diff --git a/.dockerignore b/.dockerignore index 256a8d7ea..d069d5332 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,3 +1,2 @@ docs/ -node_modules/ -src/credentialApplication/node_modules/ \ No newline at end of file +node_modules/ \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..e97e4d93d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,26 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: 'bug' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Environment (please complete the following information):** + - Hosting OS: + - Node Version (node -v): + - NPM Version (npm -v): + - Bot Version (git log -1): \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..da3909363 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: 'enhancement' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index f2918e1f8..ef781724b 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -30,13 +30,13 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 # Login against a Docker registry except on PR # https://github.com/docker/login-action - name: Log into registry ${{ env.REGISTRY }} if: github.event_name != 'pull_request' - uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -46,14 +46,14 @@ jobs: # https://github.com/docker/metadata-action - name: Extract Docker metadata id: meta - uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} # Build and push Docker image with Buildx (don't push on PR) # https://github.com/docker/build-push-action - name: Build and push Docker image - uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc + uses: docker/build-push-action@v6 with: context: . push: ${{ github.event_name != 'pull_request' }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 119b9dc8e..8a80baed1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,19 +1,19 @@ -on: - push: - pull_request: - -jobs: - lint: - name: Lint - Node ${{ matrix.node }} - runs-on: ubuntu-latest - strategy: - matrix: - node: [ 14, 16, 18 ] - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - cache: 'npm' - - run: npm install - - run: npm test +on: + push: + pull_request: + +jobs: + lint: + name: Lint - Node ${{ matrix.node }} + runs-on: ubuntu-latest + strategy: + matrix: + node: [ 22 ] + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node }} + cache: 'npm' + - run: npm install + - run: npm test diff --git a/FAQ.md b/FAQ.md new file mode 100644 index 000000000..6a21d76a2 --- /dev/null +++ b/FAQ.md @@ -0,0 +1,61 @@ +# Frequently Asked Questions +- [When I run 'npm install' I get an error](#when-i-run-npm-install-i-get-an-error) +- [I've added the credentials but when I pair I get no notification](#credentials-added-but-no-pair-notification) +- [The bot keep resetting channel permissions after restart](#bot-reset-channel-permissions) +- [Im getting 'ERROR: {"code":"DisallowedIntents"}' when trying to start the bot](#disallowed-intents) +- [Im getting 'ERROR: {"code": "TokenInvalid"}' when trying to start the bot](#token-invalid) +- [Im getting 'ERROR: SyntaxError: Unexpected token '', ""... is not valid JSON' or 'ERROR: SyntaxError: Unexpected token in JSON at position 0' when trying to start the bot](#unexpected-token-invalid-json) +- [When trying to get my credentials from the app, it's completely empty](#credential-app-empty) + + +## When I run 'npm install' I get an error + +If you're getting the error below, try running `npm i -g npm`. This should allow you to successfully do `npm install` afterwards. +![npm install error](docs/images/faq/npm-install-error.png) + + + +## I've added the credentials but when I pair I get no notification + +If you're having trouble getting a pair notifications (server/smart device), several things can be causing this. It's possible that the credentials you are currently using have been outdated, when generating credentials, they usually last for two weeks, so you can try to re-generate them through the [rustplusplus credential application](https://github.com/alexemanuelol/rustplusplus-credential-application) or the [rustplusplus website](https://rustplusplus-credentials.netlify.app/). + +If you're still not getting any notifications and you are simultaneously using the rust companion app and are successfully getting pairing notifications there, this could be the issue. While it's possible to run both apps at the same time, it's not recommended. The reason for this is that using the same steam account credentials in different places makes the notifications a bit unstable, some notifications might still get through. In the scenario of trying to pair a server or a smart device, you can just try doing several attempts of pairing and eventually it will get through. + + + +## The bot keep resetting channel permissions after restart + +This is intentional. While this might change in the future, the current solution for this is to use the /role command to set a specific role that will be allowed to view the channels. + + + +## Im getting 'ERROR: {"code":"DisallowedIntents"}' when trying to start the bot + +![DisallowedIntents](docs/images/faq/disallowedintents.png) + +If you're getting this error it's because you missed a step in the setup guide (Step 9). Kick the bot from your discord server and go [here](https://github.com/alexemanuelol/rustplusplus/blob/master/docs/discord_bot_setup.md) and follow the guide from step 9. + + + +## Im getting 'ERROR: {"code": "TokenInvalid"}' when trying to start the bot + +![TokenInvalid](docs/images/faq/token_invalid.png) + +This happens when the token you placed in the config file is invalid. There have been cases where people clone the repository with git and also download the zip of the repository, ending having two separate repositories of the bot. The problem that have occured for these people is that they've placed the token in one respository and tried running the other one. So make sure that you are trying to start the correct bot that have the config setup with the token. + + + +## Im getting 'ERROR: SyntaxError: Unexpected token '', ""... is not valid JSON' when trying to start the bot + +![Unexpected token in json 1](docs/images/faq/unexpected_token_invalid_json.png) +![Unexpected token in json 2](docs/images/faq/unexpected_token_invalid_json_at_pos_0.png) + +This occurs for some people when their PC crash, there is still no solution for this but I hope to solve this in the future. Meanwhile you can follow the [issue on GitHub](https://github.com/alexemanuelol/rustplusplus/issues/309) for updates. Current solution to be able to continue is to remove your instance file and let the bot create a new one when you start the bot next time. + + + +## When trying to get my credentials from the app, it's completely empty + +If the rustplusplus credential application looks like the image below after you've logged in with your steam details this might be because of where you live or something else blocking you from generating. The solution for you would be to try it on the [rustplusplus website](https://rustplusplus-credentials.netlify.app/) instead. + +![credential app empty](docs/images/faq/empty-credential-app.png) \ No newline at end of file diff --git a/README.md b/README.md index c472a9876..6bffc47fc 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@

-discord +discord reddit donate on ko-fi @@ -46,7 +46,7 @@ A NodeJS Discord Bot that uses the [rustplus.js](https://github.com/liamcottle/r ## **Credentials** -> You can get your credentials by running the `rustplusplus FCM Credential Application`. Download it [here](https://github.com/alexemanuelol/rustplusplus-Credential-Application/releases/download/v1.1.0/rustPlusPlus-1.1.0-win-x64.exe) +> You can get your credentials by running the `rustplusplus credential application`. Download it [here](https://github.com/alexemanuelol/rustplusplus-credential-application/releases/download/v1.4.0/rustplusplus-1.4.0-win-x64.exe) ## **How to run the bot** diff --git a/docs/commands.md b/docs/commands.md index 49a571517..9dfd6ab22 100644 --- a/docs/commands.md +++ b/docs/commands.md @@ -14,7 +14,7 @@ Slash Command | Description [**/blacklist**](commands.md#blacklist) | Blacklist a user from using the bot. [**/cctv**](commands.md#cctv) | Posts CCTV codes for a monument. [**/craft**](commands.md#craft) | Display the cost to craft an item. -[**/credentials**](commands.md#credentials) | Set/Clear the FCM Credentials for the user account. +[**/credentials**](commands.md#credentials) | Set/Clear the Credentials for the user account. [**/decay**](commands.md#decay) | Display the decay time of an item. [**/help**](commands.md#help) | Display help message. [**/item**](commands.md#item) | Get the details of an item. @@ -105,25 +105,20 @@ Subcommand | Options | Description | Required ## **/credentials** -> **Add/Remove the FCM Credentials for the user account.** +> **Add/Remove the Credentials for the user account.** Subcommand | Options | Description | Required ---------- | ------- | ----------- | -------- -`add` |   | Add FCM Credentials. |   -  | `keys_private_key` | Keys Private Key. | `True` -  | `keys_public_key` | Keys Public Key. | `True` -  | `keys_auth_secret` | Keys Auth Secret. | `True` -  | `fcm_token` | FCM Token. | `True` -  | `fcm_push_set` | FCM Push Set. | `True` -  | `gcm_token` | GCM Token. | `True` -  | `gcm_android_id` | FCM Android ID. | `True` +`add` |   | Add Credentials. |   +  | `gcm_android_id` | GCM Android ID. | `True`   | `gcm_security_token` | GCM Security Token. | `True` -  | `gcm_app_id` | GCM App ID. | `True`   | `steam_id` | Steam ID. | `True` +  | `issued_date` | Issued date of the credentials. | `True` +  | `expire_date` | Expire date of the credentials. | `True`   | `hoster` | Should be hoster. | `False` -`remove` |   | Remove FCM Credentials. |   +`remove` |   | Remove Credentials. |     | `steam_id` | Steam ID. | `False` -`show` |   | Show all registered FCM Credentials. |   +`show` |   | Show all registered Credentials. |   `set_hoster` |   | Set the hoster. |     | `steam_id` | Steam ID. | `False` @@ -385,6 +380,7 @@ In-Game Command | Description [**unmute**](commands.md#unmute) | Unmute the bot from the In-Game Team Chat. [**upkeep**](commands.md#upkeep) | Get the upkeep time of all connected tool cupboard monitors. [**uptime**](commands.md#uptime-ingame) | Display uptime of the bot and server. +[**vendor**](commands.md#vendor) | Get information about the Traveling Vendor (Current Location, Time since last vendor) [**wipe**](commands.md#wipe) | Get the time since it was wiped. @@ -720,6 +716,14 @@ Subcommand | Description | Required ![In-Game Command uptime Image](images/ingame_commands/uptime_ingame.png) +## **vendor** + +> **Get information about the Traveling Vendor (Current Location, Time since last Traveling Vendor).** +
Command: `!vendor` + +![In-Game Command vendor Image](images/ingame_commands/vendor_ingame.png) + + ## **wipe** > **Get the time since it was wiped.** diff --git a/docs/credentials.md b/docs/credentials.md index d60bdcecb..c4bd5eaba 100644 --- a/docs/credentials.md +++ b/docs/credentials.md @@ -1,13 +1,13 @@ -# FCM Credentials Documentation +# Credentials Documentation -> To be able to use an instance of the bot properly, you want to setup your FCM Credentials. Adding these credentials makes it possible for you to pair with servers as well as connecting to them. +> To be able to use an instance of the bot properly, you want to setup your Credentials. Adding these credentials makes it possible for you to pair with servers as well as connecting to them. -## Retrieving FCM Credentials +## Retrieving Credentials -* Download and install the [rustplusplus FCM Credential Application](https://github.com/alexemanuelol/rustplusplus-Credential-Application/releases/download/v1.1.0/rustPlusPlus-1.1.0-win-x64.exe) +* Download and install the [rustplusplus credential application](https://github.com/alexemanuelol/rustplusplus-credential-application/releases/download/v1.4.0/rustplusplus-1.4.0-win-x64.exe) * Once downloaded and installed, open it and press the button `Connect with Rust+`. -![rustplusplus FCM Credential Application Image](images/bot_setup/fcm_credential_application_connect.png) +![rustplusplus Credential Application Image](images/bot_setup/fcm_credential_application_connect.png) * Another window will pop up where you need to login with your Steam Account. @@ -20,15 +20,15 @@ * Paste the Slash command in your Discord Server Text Channel. Which Text Channel you run the Slash Command is not important, as long as the bot has access to it. -![FCM Credentials discord Image](images/bot_setup/credentials_discord.png) +![Credentials discord Image](images/bot_setup/credentials_discord.png) * This process is the same for the owner of the bot as well as any teammate that want to register their credentials (mainly for the purpose to extend the usage of the leader command). Once a teammate have registered their credentials, they just need to go inside the game and pair with the server. Which teammates that have paired with the server can be seen in the information channel, they should have the P icon beside their name, see below: ![Teammates Paired with Server](images/bot_setup/teammates_paired.png) -## Why is FCM Credentials necessary? +## Why is Credentials necessary? -FCM Credentials are necessary in order to get the following: +Credentials are necessary in order to get the following: * Server Pairing Notifications * Smart Devices Pairing Notifications diff --git a/docs/credentials_web_version.md b/docs/credentials_web_version.md new file mode 100644 index 000000000..92217134a --- /dev/null +++ b/docs/credentials_web_version.md @@ -0,0 +1,58 @@ +# Credentials Documentation (Web Version) + +> To be able to use an instance of the bot properly, you need to set up your Credentials. Adding these credentials makes it possible for you to pair with servers as well as connecting to them. Note that unlike the previous .exe version, the web version requires Chrome or Firefox browsers. + +## **❗️Before You Start** +> Make sure you are using **`Chrome or Firefox browsers`** before starting the credential setup process. +> This is because the web version uses browser extensions to simplify the process, which is more lightweight and convenient compared to the relatively heavy .exe application. + +## Retrieving Credentials + +1. **First, navigate to the [rustplusplus-credentials page](https://rustplusplus-credentials.netlify.app/).** + +2. **Click the Install Extension button located at the top right corner of the page to install the extension, then refresh the page. (After installation, the Log In button should be visible)** + +> [rustPlusPlus-Credentials Chrome Extension](https://chromewebstore.google.com/detail/rustplusplus-credential-a/ooahmkklkanfgfmphpknpcgdpdcoikhe) + +> [rustPlusPlus-Credentials Firefox Extension](https://addons.mozilla.org/en-US/firefox/addon/rustplusplus-credential-app) + + ![rustplusplus Click Install Extension Image](images/bot_setup/click_install_extension.png) + + ![rustplusplus After Click Install Extension Image](images/bot_setup/after_click_install_extension.png) + +3. **Click the Log In button to proceed with the Steam login.** + + ![Steam Account login Image](images/bot_setup/steam_login_web.png) + +4. **After logging in, you will be redirected to the display page where the slash command will be shown `/credentials add ....`** + + ![rustplusplus Display Page](images/bot_setup/rustplusplus_display_page.png) + +5. **Click `Copy` to copy the Slash Command.** + + ![Credentials copy Image](images/bot_setup/click_copy_to_clipboard.png) + +6. **Paste the Slash Command in your Discord Server Text Channel. The specific Text Channel does not matter, as long as the bot has access to it.** + + ![FCM Credentials discord Image](images/bot_setup/credentials_discord.png) + +7. **This process is the same for the owner of the bot as well as any teammate that wants to register their credentials (mainly to extend the usage of the leader command). Once a teammate has registered their credentials, they need to go inside the game and pair with the server. Teammates paired with the server can be seen in the information channel, indicated by the P icon beside their name, as shown below:** + + ![Teammates Paired with Server](images/bot_setup/teammates_paired.png) + +## Why are Credentials Necessary? + +Credentials are necessary to enable the following features: + +* Server Pairing Notifications +* Smart Devices Pairing Notifications +* Smart Alarm Notifications +* Player Offline Death Notifications +* Teammate Login Notifications +* Facepunch News + +Without these, the bot would not operate properly. + +> **Note**: This process requires Chrome or Firefox browsers for the web version. Ensure your browser is up to date for the best experience. + +> Rust Companion API returns a refreshed Steam Auth Token which expires after 2 weeks. You can visit the [rustplusplus-credentials display page](https://rustplusplus-credentials.netlify.app/display) at any time to check how much time is left on your token. diff --git a/docs/discord_text_channels.md b/docs/discord_text_channels.md index f0c95c8d6..9fc90370a 100644 --- a/docs/discord_text_channels.md +++ b/docs/discord_text_channels.md @@ -52,7 +52,7 @@ ## Servers Channel -> The Server Channel lists all the paired Rust Servers. Given that you have setup your FCM Credentials properly, once you pair a Rust Server In-Game via `ESC -> Rust+ -> Pair With Server`, it should automatically appear in the `servers` channel. From there you can decide which server you want the bot to connect to by clicking the `CONNECT` button for that server. +> The Server Channel lists all the paired Rust Servers. Given that you have setup your Credentials properly, once you pair a Rust Server In-Game via `ESC -> Rust+ -> Pair With Server`, it should automatically appear in the `servers` channel. From there you can decide which server you want the bot to connect to by clicking the `CONNECT` button for that server. The server embed displays a bunch of information. The title of the embed is the name of the server. The Battlemetrics Id is also displayed as well as if the server is streamer mode or not. The Description of the embed is basically the description of the Rust Server. Here you can also find the connect information that could be found in `information` channel. You can also see who is the hoster of the bot for the server.
diff --git a/docs/documentation.md b/docs/documentation.md index ee39930e8..d6dca58aa 100644 --- a/docs/documentation.md +++ b/docs/documentation.md @@ -4,7 +4,7 @@ * [**Installation**](installation.md) * [**Discord Bot Setup**](discord_bot_setup.md) -* [**FCM Credentials**](credentials.md) +* [**Credentials**](credentials.md) OR [**Credentials(WebVersion)**](credentials_web_version.md) * [**Pair & Connect Server**](pair_and_connect_to_server.md) * [**Commands**](commands.md) * [**Discord Text Channels**](discord_text_channels.md) diff --git a/docs/full_list_features.md b/docs/full_list_features.md index d1943c2de..3fc1b9eb6 100644 --- a/docs/full_list_features.md +++ b/docs/full_list_features.md @@ -6,7 +6,7 @@ - **/blacklist** - Blacklist a user from using the bot. - **/cctv** - Get cctv camera codes for monuments. - **/craft** - Display the cost to craft an item. -- **/credentials** - Setup FCM-Credentials. +- **/credentials** - Setup Credentials. - **/decay** - Display the decay time of an item. - **/help** - Get help message. - **/item** - Get the details of an item. @@ -60,6 +60,7 @@ - **unmute** - Unmute rustplusplus In-Game. - **upkeep** - Check upkeep of Storage Monitor Tool Cupboards. - **uptime** - Display the uptime of rustplusplus and currently connected server. +- **vendor** - Get information regarding the Traveling Vendor - **wipe** - Display time since wipe. ## Smart Devices diff --git a/docs/images/bot_setup/after_click_install_extension.png b/docs/images/bot_setup/after_click_install_extension.png new file mode 100644 index 000000000..a895dc958 Binary files /dev/null and b/docs/images/bot_setup/after_click_install_extension.png differ diff --git a/docs/images/bot_setup/click_copy_to_clipboard.png b/docs/images/bot_setup/click_copy_to_clipboard.png new file mode 100644 index 000000000..db7d2feb1 Binary files /dev/null and b/docs/images/bot_setup/click_copy_to_clipboard.png differ diff --git a/docs/images/bot_setup/click_install_extension.png b/docs/images/bot_setup/click_install_extension.png new file mode 100644 index 000000000..14f351a99 Binary files /dev/null and b/docs/images/bot_setup/click_install_extension.png differ diff --git a/docs/images/bot_setup/rustplusplus_display_page.png b/docs/images/bot_setup/rustplusplus_display_page.png new file mode 100644 index 000000000..9844b19a3 Binary files /dev/null and b/docs/images/bot_setup/rustplusplus_display_page.png differ diff --git a/docs/images/bot_setup/steam_login_web.png b/docs/images/bot_setup/steam_login_web.png new file mode 100644 index 000000000..c6f9bcc52 Binary files /dev/null and b/docs/images/bot_setup/steam_login_web.png differ diff --git a/docs/images/faq/disallowedintents.png b/docs/images/faq/disallowedintents.png new file mode 100644 index 000000000..2c8e40f3d Binary files /dev/null and b/docs/images/faq/disallowedintents.png differ diff --git a/docs/images/faq/empty-credential-app.png b/docs/images/faq/empty-credential-app.png new file mode 100644 index 000000000..d94e44e12 Binary files /dev/null and b/docs/images/faq/empty-credential-app.png differ diff --git a/docs/images/faq/npm-install-error.png b/docs/images/faq/npm-install-error.png new file mode 100644 index 000000000..9b730e3bc Binary files /dev/null and b/docs/images/faq/npm-install-error.png differ diff --git a/docs/images/faq/token_invalid.png b/docs/images/faq/token_invalid.png new file mode 100644 index 000000000..d56ffd85e Binary files /dev/null and b/docs/images/faq/token_invalid.png differ diff --git a/docs/images/faq/unexpected_token_invalid_json.png b/docs/images/faq/unexpected_token_invalid_json.png new file mode 100644 index 000000000..c70b729ff Binary files /dev/null and b/docs/images/faq/unexpected_token_invalid_json.png differ diff --git a/docs/images/faq/unexpected_token_invalid_json_at_pos_0.png b/docs/images/faq/unexpected_token_invalid_json_at_pos_0.png new file mode 100644 index 000000000..73673844f Binary files /dev/null and b/docs/images/faq/unexpected_token_invalid_json_at_pos_0.png differ diff --git a/docs/images/ingame_commands/vendor_ingame.png b/docs/images/ingame_commands/vendor_ingame.png new file mode 100644 index 000000000..dd52e69d7 Binary files /dev/null and b/docs/images/ingame_commands/vendor_ingame.png differ diff --git a/docs/installation.md b/docs/installation.md index 7ee2d25c6..ba309692b 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -1,20 +1,20 @@ -# Installation Documentation - -## Required Software - -Program | Version | Download | Note -------- | ------- | -------- | ---- -`NodeJS` | >= 16.9 | [**here**](https://nodejs.org/en/download/) | Since discordjs v14 is used, the version needs to be at least 16.9. -`Git` | Any | [**here**](https://git-scm.com/downloads) |   - -## Optional Software -To enable step-trace for cargoship and patrol helicopter, [**GraphicsMagick**](http://www.graphicsmagick.org/download.html) needs to be downloaded. - - -## Clone the repository - -Open a terminal (`Git Bash` / `CMD` / `Terminal` / `PowerShell` or similar) and run the following commands: - - $ git clone https://github.com/alexemanuelol/rustplusplus.git - $ cd rustplusplus - $ npm install +# Installation Documentation + +## Required Software + +Program | Version | Download | Note +------- | ------- | -------- | ---- +`NodeJS` | >= 22.12.0 | [**here**](https://nodejs.org/en/download/) | Since discordjs v14 is used, the version needs to be at least 22.12.0. +`Git` | Any | [**here**](https://git-scm.com/downloads) |   + +## Optional Software +To enable step-trace for cargoship and patrol helicopter, [**GraphicsMagick**](http://www.graphicsmagick.org/download.html) needs to be downloaded. + + +## Clone the repository + +Open a terminal (`Git Bash` / `CMD` / `Terminal` / `PowerShell` or similar) and run the following commands: + + $ git clone https://github.com/alexemanuelol/rustplusplus.git + $ cd rustplusplus + $ npm install diff --git a/docs/pair_and_connect_to_server.md b/docs/pair_and_connect_to_server.md index 04a248b9c..ff6f8f4d3 100644 --- a/docs/pair_and_connect_to_server.md +++ b/docs/pair_and_connect_to_server.md @@ -1,6 +1,6 @@ # Pair and Connect to a Server -1. Make sure that you've setup the FCM Credentials and that the bot is currently running (`npm start run`). +1. Make sure that you've setup the Credentials and that the bot is currently running (`npm start run`). 2. Login to the Rust server you want to play. 3. Click `ESC` and then on `Rust+`. 4. Click `PAIR WITH SERVER`. diff --git a/docs/smart_devices.md b/docs/smart_devices.md index 73bf877a4..d3a6d00f4 100644 --- a/docs/smart_devices.md +++ b/docs/smart_devices.md @@ -1,6 +1,6 @@ # Smart Devices -> Smart Devices is an umbrella term for three different devices, `Smart Switches`, `Smart Alarms` and `Storage Monitors`. To pair a Smart Device with rustplusplus, make sure you've [setup the FCM-Credentials](credentials.md). When the FCM-Credentials are setup, you just need a `wire tool` and start pairing like you would with the [Rust+ Companion App](https://rust.facepunch.com/companion). Once you've paired your Smart Devices, they should appear in their respective Discord Text-Channel (`switches`, `alarms` or `storagemonitors`). +> Smart Devices is an umbrella term for three different devices, `Smart Switches`, `Smart Alarms` and `Storage Monitors`. To pair a Smart Device with rustplusplus, make sure you've [setup the Credentials](credentials.md). When the Credentials are setup, you just need a `wire tool` and start pairing like you would with the [Rust+ Companion App](https://rust.facepunch.com/companion). Once you've paired your Smart Devices, they should appear in their respective Discord Text-Channel (`switches`, `alarms` or `storagemonitors`).
It is possible to change the display image for all the different Smart Devices by running the corresponding Slash Command. The Slash Commands to change Smart Device images is `/switch`, `/alarm` and `/storagemonitor`. diff --git a/package-lock.json b/package-lock.json index da6bba88a..645f969b9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,9477 +1,6057 @@ { - "name": "rustplusplus", - "version": "1.16.0", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "rustplusplus", - "version": "1.14.0", - "hasInstallScript": true, - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@discordjs/rest": "^1.6.0", - "@discordjs/voice": "^0.16.0", - "@formatjs/intl": "^2.6.9", - "@liamcottle/rustplus.js": "^2.4.0", - "axios": "^1.3.4", - "colors": "^1.4.0", - "discord-api-types": "^0.37.37", - "discord.js": "^14.8.0", - "ffmpeg-static": "^5.1.0", - "gm": "^1.25.0", - "jimp": "^0.22.7", - "libsodium-wrappers": "^0.7.11", - "lodash": "^4.17.21", - "push-receiver": "^2.1.1", - "translate": "^1.4.1", - "ts-node": "^10.9.1", - "typescript": "^4.8.2", - "winston": "^3.8.2" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "peer": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", - "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", - "dependencies": { - "@babel/highlight": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.6.tgz", - "integrity": "sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.22.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.8.tgz", - "integrity": "sha512-75+KxFB4CZqYRXjx4NlR4J7yGvKumBuZTmV4NV6v09dVXXkuYVYLT68N6HCzLvfJ+fWCxQsntNzKwwIXL4bHnw==", - "peer": true, - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.7", - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helpers": "^7.22.6", - "@babel/parser": "^7.22.7", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.8", - "@babel/types": "^7.22.5", - "@nicolo-ribaudo/semver-v6": "^6.3.3", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/core/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "peer": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/@babel/core/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "peer": true - }, - "node_modules/@babel/generator": { - "version": "7.22.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.7.tgz", - "integrity": "sha512-p+jPjMG+SI8yvIaxGgeW24u7q9+5+TGpZh8/CuB7RhBKd7RCy8FayNEFNNKrNK/eUcY/4ExQqLmyrvBXKsIcwQ==", - "dependencies": { - "@babel/types": "^7.22.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz", - "integrity": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.6.tgz", - "integrity": "sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA==", - "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-validator-option": "^7.22.5", - "@nicolo-ribaudo/semver-v6": "^6.3.3", - "browserslist": "^4.21.9", - "lru-cache": "^5.1.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.6.tgz", - "integrity": "sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@nicolo-ribaudo/semver-v6": "^6.3.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.6.tgz", - "integrity": "sha512-nBookhLKxAWo/TUCmhnaEJyLz2dekjQvv5SRpE9epWQBcpedWLKt8aZdsuT9XV5ovzR3fENLjRXVT0GsSlGGhA==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@nicolo-ribaudo/semver-v6": "^6.3.3", - "regexpu-core": "^5.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.1.tgz", - "integrity": "sha512-kX4oXixDxG197yhX+J3Wp+NpL2wuCFjWQAr6yX2jtCnflK9ulMI51ULFGIrWiX1jGfvAxdHp+XQCcP2bZGPs9A==", - "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0-0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/@babel/helper-define-polyfill-provider/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", - "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", - "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", - "dependencies": { - "@babel/template": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", - "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", - "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", - "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz", - "integrity": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-wrap-function": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz", - "integrity": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", - "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", - "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-wrap-function": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz", - "integrity": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==", - "dependencies": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.6.tgz", - "integrity": "sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==", - "peer": true, - "dependencies": { - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.6", - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", - "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.22.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.7.tgz", - "integrity": "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", - "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", - "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" - } - }, - "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.0-placeholder-for-preset-env.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", - "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", - "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz", - "integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-unicode-sets-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", - "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", - "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.22.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.7.tgz", - "integrity": "sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.5", - "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", - "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", - "dependencies": { - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", - "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz", - "integrity": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz", - "integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz", - "integrity": "sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" - } - }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz", - "integrity": "sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", - "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz", - "integrity": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "name": "rustplusplus", + "version": "1.22.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "rustplusplus", + "version": "1.22.0", + "hasInstallScript": true, + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@liamcottle/rustplus.js": "git+https://github.com/alexemanuelol/rustplus.js.git#089cfd3db1b04709911948bce669273139c6a124", + "gm": "^1.25.0", + "@discordjs/voice": "^0.18.0", + "axios": "^1.3.4", + "translate": "^1.4.1", + "lodash": "^4.17.21", + "@liamcottle/push-receiver": "^0.0.4", + "@formatjs/intl": "^2.6.9", + "libsodium-wrappers": "^0.7.11", + "jimp": "^0.22.7", + "typescript": "^5.8.3", + "ts-node": "^10.9.2", + "discord-api-types": "^0.38.14", + "@discordjs/rest": "^2.5.1", + "ffmpeg-static": "^5.1.0", + "colors": "^1.4.0", + "discord.js": "^14.21.0", + "winston": "^3.8.2" + } + }, + "node_modules/@colors/colors": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz", + "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==", + "license": "MIT", + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT", + "peer": true + }, + "node_modules/reduce-flatten": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", + "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz", + "integrity": "sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@discordjs/util": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@discordjs/util/-/util-1.1.1.tgz", + "integrity": "sha512-eddz6UnOBEB1oITPinyrB2Pttej49M9FZQY8NxgEvc3tq6ZICZ19m70RsmzRdDHk80O9NoYN/25AqJl8vPVf/g==", + "license": "Apache-2.0", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/discordjs/discord.js?sponsor" + } + }, + "node_modules/kuler": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", + "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==", + "license": "MIT" + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", + "license": "BSD-3-Clause" + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/@jimp/plugin-crop": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-crop/-/plugin-crop-0.22.12.tgz", + "integrity": "sha512-FNuUN0OVzRCozx8XSgP9MyLGMxNHHJMFt+LJuFjn1mu3k0VQxrzqbN06yIl46TVejhyAhcq5gLzqmSCHvlcBVw==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/any-base": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz", + "integrity": "sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==", + "license": "MIT" + }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.27.1.tgz", + "integrity": "sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@liamcottle/push-receiver/node_modules/protobufjs": { + "version": "7.2.4", + "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.4.tgz", + "integrity": "sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==", + "hasInstallScript": true, + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/long": "^4.0.1", + "@types/node": ">=13.7.0", + "long": "^4.0.0" + }, + "bin": { + "pbjs": "bin/pbjs", + "pbts": "bin/pbts" + } + }, + "node_modules/gm/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/@jimp/plugin-print": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-print/-/plugin-print-0.22.12.tgz", + "integrity": "sha512-c7TnhHlxm87DJeSnwr/XOLjJU/whoiKYY7r21SbuJ5nuH+7a78EW1teOaj5gEr2wYEd7QtkFqGlmyGXY/YclyQ==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "load-bmfont": "^1.4.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-blit": ">=0.3.5" + } + }, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "license": "ISC", + "engines": { + "node": ">=4" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "license": "Apache-2.0" + }, + "node_modules/translate": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/translate/-/translate-1.4.1.tgz", + "integrity": "sha512-kQVCT+Xf2Yu6tb2a3711Fm6p0Xh8BeEsy5pO6xPsRo2DwRMuKnjtWHR58gl8YiuuvVSMI78fTXbAfComWV8hFw==", + "license": "MIT", + "dependencies": { + "@babel/preset-env": "^7.15.6", + "node-fetch": "^2.6.0" + }, + "funding": { + "url": "https://www.paypal.me/franciscopresencia/19" + } + }, + "node_modules/table-layout/node_modules/typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/min-document": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", + "integrity": "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==", + "dependencies": { + "dom-walk": "^0.1.0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz", + "integrity": "sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@formatjs/intl": { + "version": "2.10.15", + "resolved": "https://registry.npmjs.org/@formatjs/intl/-/intl-2.10.15.tgz", + "integrity": "sha512-i6+xVqT+6KCz7nBfk4ybMXmbKO36tKvbMKtgFz9KV+8idYFyFbfwKooYk8kGjyA5+T5f1kEPQM5IDLXucTAQ9g==", + "license": "MIT", + "dependencies": { + "@formatjs/ecma402-abstract": "2.2.4", + "@formatjs/fast-memoize": "2.2.3", + "@formatjs/icu-messageformat-parser": "2.9.4", + "@formatjs/intl-displaynames": "6.8.5", + "@formatjs/intl-listformat": "7.7.5", + "intl-messageformat": "10.7.7", + "tslib": "2" + }, + "peerDependencies": { + "typescript": "^4.7 || 5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "license": "MIT" + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/ts-node": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", + "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz", + "integrity": "sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@liamcottle/rustplus.js/node_modules/@liamcottle/push-receiver/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "license": "MIT", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/logform": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/logform/-/logform-2.7.0.tgz", + "integrity": "sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==", + "license": "MIT", + "dependencies": { + "@colors/colors": "1.6.0", + "@types/triple-beam": "^1.3.2", + "fecha": "^4.2.0", + "ms": "^2.1.1", + "safe-stable-stringify": "^2.3.1", + "triple-beam": "^1.3.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz", + "integrity": "sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@types/triple-beam": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz", + "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==", + "license": "MIT" + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/exif-parser": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz", + "integrity": "sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==" + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/async": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", + "license": "MIT" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001721", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001721.tgz", + "integrity": "sha512-cOuvmUVtKrtEaoKiO0rSc29jcjwMwX5tOHDy4MgVFEWiUXj4uBMJkwI8MDySkgXidpMiHUcviogAvFi4pA2hDQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/ts-mixer": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/ts-mixer/-/ts-mixer-6.0.4.tgz", + "integrity": "sha512-ufKpbmrugz5Aou4wcr5Wc1UUFWOLhq+Fm6qa6P0w0K5Qw2yhaUoiWszhCVuNQyNwrlGiscHOmqYoAox1PtvgjA==", + "license": "MIT" + }, + "node_modules/fecha": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", + "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==", + "license": "MIT" + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.11.1.tgz", + "integrity": "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.3", + "core-js-compat": "^3.40.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@jimp/plugin-blur": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-blur/-/plugin-blur-0.22.12.tgz", + "integrity": "sha512-S0vJADTuh1Q9F+cXAwFPlrKWzDj2F9t/9JAbUvaaDuivpyWuImEKXVz5PUZw2NbpuSHjwssbTpOZ8F13iJX4uw==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-threshold": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-threshold/-/plugin-threshold-0.22.12.tgz", + "integrity": "sha512-4x5GrQr1a/9L0paBC/MZZJjjgjxLYrqSmWd+e+QfAEPvmRxdRoQ5uKEuNgXnm9/weHQBTnQBQsOY2iFja+XGAw==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-color": ">=0.8.0", + "@jimp/plugin-resize": ">=0.8.0" + } + }, + "node_modules/one-time": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", + "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", + "license": "MIT", + "dependencies": { + "fn.name": "1.x.x" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz", + "integrity": "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@discordjs/ws": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@discordjs/ws/-/ws-1.2.3.tgz", + "integrity": "sha512-wPlQDxEmlDg5IxhJPuxXr3Vy9AjYq5xCvFWGJyD7w7Np8ZGu+Mc+97LCoEc/+AYCo2IDpKioiH0/c/mj5ZR9Uw==", + "license": "Apache-2.0", + "dependencies": { + "@discordjs/collection": "^2.1.0", + "@discordjs/rest": "^2.5.1", + "@discordjs/util": "^1.1.0", + "@sapphire/async-queue": "^1.5.2", + "@types/ws": "^8.5.10", + "@vladfrangu/async_event_emitter": "^2.2.4", + "discord-api-types": "^0.38.1", + "tslib": "^2.6.2", + "ws": "^8.17.0" + }, + "engines": { + "node": ">=16.11.0" + }, + "funding": { + "url": "https://github.com/discordjs/discord.js?sponsor" + } + }, + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz", + "integrity": "sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@sapphire/shapeshift": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@sapphire/shapeshift/-/shapeshift-4.0.0.tgz", + "integrity": "sha512-d9dUmWVA7MMiKobL3VpLF8P2aeanRTu6ypG2OIaEv/ZHH/SUQ2iHOVyi5wAPjQ+HmnMuL0whK9ez8I/raWbtIg==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "lodash": "^4.17.21" + }, + "engines": { + "node": ">=v16" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "license": "MIT" + }, + "node_modules/image-q/node_modules/@types/node": { + "version": "16.9.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.9.1.tgz", + "integrity": "sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==", + "license": "MIT" + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", + "license": "BSD-3-Clause" + }, + "node_modules/@vladfrangu/async_event_emitter": { + "version": "2.4.6", + "resolved": "https://registry.npmjs.org/@vladfrangu/async_event_emitter/-/async_event_emitter-2.4.6.tgz", + "integrity": "sha512-RaI5qZo6D2CVS6sTHFKg1v5Ohq/+Bo2LZ5gzUEwZ/WkHhwtGTCB/sVLw8ijOkAUxasZ+WshN/Rzj4ywsABJ5ZA==", + "license": "MIT", + "engines": { + "node": ">=v14.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@dabh/diagnostics": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", + "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", + "license": "MIT", + "dependencies": { + "colorspace": "1.1.x", + "enabled": "2.0.x", + "kuler": "^2.0.0" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jimp/plugin-resize": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.22.12.tgz", + "integrity": "sha512-3NyTPlPbTnGKDIbaBgQ3HbE6wXbAlFfxHVERmrbqAi8R3r6fQPxpCauA8UVDnieg5eo04D0T8nnnNIX//i/sXg==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/array-back": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", + "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "license": "Apache-2.0", + "dependencies": { + "isstream": "~0.1.2", + "oauth-sign": "~0.9.0", + "safe-buffer": "^5.1.2", + "is-typedarray": "~1.0.0", + "json-stringify-safe": "~5.0.1", + "performance-now": "^2.1.0", + "http-signature": "~1.2.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2", + "har-validator": "~5.1.3", + "extend": "~3.0.2", + "mime-types": "~2.1.19", + "tough-cookie": "~2.5.0", + "aws-sign2": "~0.7.0", + "caseless": "~0.12.0", + "aws4": "^1.8.0", + "forever-agent": "~0.6.1", + "combined-stream": "~1.0.6", + "form-data": "~2.3.2", + "qs": "~6.5.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/@liamcottle/rustplus.js/node_modules/@liamcottle/push-receiver": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@liamcottle/push-receiver/-/push-receiver-0.0.3.tgz", + "integrity": "sha512-YSXQzd7Fwfh1tG2O5xV+WjSf2nCoye7OSHPAxlzMXAtdK1XAdjGUaqJmCqagpxwsqY4a6FuWmyhvBWmDT5AAUQ==", + "license": "MIT", + "dependencies": { + "axios": "^1.7.7", + "http_ece": "^1.0.5", + "long": "^3.2.0", + "protobufjs": "^6.8.0", + "request": "^2.81.0", + "request-promise": "^4.2.1", + "uuid": "^3.1.0" + } + }, + "node_modules/@discordjs/rest/node_modules/@discordjs/collection": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-2.1.1.tgz", + "integrity": "sha512-LiSusze9Tc7qF03sLCujF5iZp7K+vRNEDBZ86FT9aQAv3vxMLihUvKvpsCWiQ2DJq1tVckopKm1rxomgNUc9hg==", + "license": "Apache-2.0", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/discordjs/discord.js?sponsor" + } + }, + "node_modules/is-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", + "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==", + "license": "MIT" + }, + "node_modules/https-proxy-agent/node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/find-replace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", + "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", + "license": "MIT", + "dependencies": { + "array-back": "^3.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "license": "ISC", + "dependencies": { + "lodash": "^4.17.19" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "node_modules/@types/long": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", + "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==", + "license": "MIT" + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.4.tgz", + "integrity": "sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.4" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "license": "MIT" + }, + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", + "license": "BSD-3-Clause" + }, + "node_modules/logform/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.9.0.tgz", + "integrity": "sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "license": "MIT" + }, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/https-proxy-agent/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jimp/plugin-color": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-color/-/plugin-color-0.22.12.tgz", + "integrity": "sha512-xImhTE5BpS8xa+mAN6j4sMRWaUgUDLoaGHhJhpC+r7SKKErYDR0WQV4yCE4gP+N0gozD0F3Ka1LUSaMXrn7ZIA==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "tinycolor2": "^1.6.0" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "license": "MIT" + }, + "node_modules/@babel/types": { + "version": "7.27.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.6.tgz", + "integrity": "sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/gm": { + "version": "1.25.1", + "resolved": "https://registry.npmjs.org/gm/-/gm-1.25.1.tgz", + "integrity": "sha512-jgcs2vKir9hFogGhXIfs0ODhJTfIrbECCehg38tqFgHm8zqXx7kAJyCYAFK4jTjx71AxrkFtkJBawbAxYUPX9A==", + "deprecated": "The gm module has been sunset. Please migrate to an alternative. https://github.com/aheckmann/gm?tab=readme-ov-file#2025-02-24-this-project-is-not-maintained", + "license": "MIT", + "dependencies": { + "array-parallel": "~0.1.3", + "array-series": "~0.1.5", + "cross-spawn": "^7.0.5", + "debug": "^3.1.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/http-response-object/node_modules/@types/node": { + "version": "10.17.60", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", + "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==", + "license": "MIT" + }, + "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz", + "integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==", + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "engines": [ + "node >= 6.0" + ], + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.27.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.27.5.tgz", + "integrity": "sha512-KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz", + "integrity": "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz", + "integrity": "sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/template": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/traverse/node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/jpeg-js": { + "version": "0.4.4", + "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", + "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz", + "integrity": "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/enabled": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", + "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==", + "license": "MIT" + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.13", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.13.tgz", + "integrity": "sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.4", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz", + "integrity": "sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.165", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.165.tgz", + "integrity": "sha512-naiMx1Z6Nb2TxPU6fiFrUrDTjyPMLdTtaOd2oLmG8zVSg2hCWGkhPyxwk+qRmZ1ytwVqUv0u7ZcDA5+ALhaUtw==", + "license": "ISC" + }, + "node_modules/@babel/parser": { + "version": "7.27.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.5.tgz", + "integrity": "sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.3" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", + "license": "BSD-3-Clause" + }, + "node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "license": "MIT", + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz", + "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==", + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "license": "MIT" + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.1.tgz", + "integrity": "sha512-018KRk76HWKeZ5l4oTj2zPpSh+NbGdt0st5S6x0pga6HgrjBOJb24mMDHorFopOOd6YHkLgOZ+zaCjZGPO4aKg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz", + "integrity": "sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@formatjs/intl-displaynames": { + "version": "6.8.5", + "resolved": "https://registry.npmjs.org/@formatjs/intl-displaynames/-/intl-displaynames-6.8.5.tgz", + "integrity": "sha512-85b+GdAKCsleS6cqVxf/Aw/uBd+20EM0wDpgaxzHo3RIR3bxF4xCJqH/Grbzx8CXurTgDDZHPdPdwJC+May41w==", + "license": "MIT", + "dependencies": { + "@formatjs/ecma402-abstract": "2.2.4", + "@formatjs/intl-localematcher": "0.5.8", + "tslib": "2" + } + }, + "node_modules/dom-walk": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", + "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" + }, + "node_modules/omggif": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", + "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==", + "license": "MIT" + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz", + "integrity": "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/peek-readable": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz", + "integrity": "sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "license": "(MIT AND Zlib)" + }, + "node_modules/wordwrapjs/node_modules/typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jimp/plugin-contain": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-contain/-/plugin-contain-0.22.12.tgz", + "integrity": "sha512-Eo3DmfixJw3N79lWk8q/0SDYbqmKt1xSTJ69yy8XLYQj9svoBbyRpSnHR+n9hOw5pKXytHwUW6nU4u1wegHNoQ==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-blit": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5", + "@jimp/plugin-scale": ">=0.3.5" + } + }, + "node_modules/regjsparser": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", + "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", + "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~3.0.2" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@liamcottle/rustplus.js/node_modules/@liamcottle/push-receiver/node_modules/protobufjs": { + "version": "7.2.4", + "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.4.tgz", + "integrity": "sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==", + "hasInstallScript": true, + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/long": "^4.0.1", + "@types/node": ">=13.7.0", + "long": "^4.0.0" + }, + "bin": { + "pbjs": "bin/pbjs", + "pbts": "bin/pbts" + } + }, + "node_modules/@discordjs/voice/node_modules/discord-api-types": { + "version": "0.37.120", + "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.37.120.tgz", + "integrity": "sha512-7xpNK0EiWjjDFp2nAhHXezE4OUWm7s1zhc/UXXN6hnFFU8dfoPHgV0Hx0RPiCa3ILRpdeh152icc68DGCyXYIw==", + "license": "MIT" + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/discord.js/node_modules/@sapphire/snowflake": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/@sapphire/snowflake/-/snowflake-3.5.3.tgz", + "integrity": "sha512-jjmJywLAFoWeBi1W7994zZyiNWPIiqRRNAmSERxyg93xRGzNYvGjlZ0gR6x0F4gPRi2+0O6S71kOZYyr3cxaIQ==", + "license": "MIT", + "engines": { + "node": ">=v14.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/aws4": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.2.tgz", + "integrity": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==", + "license": "MIT" + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz", + "integrity": "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "license": "MIT", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz", + "integrity": "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/command-line-usage/node_modules/array-back": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", + "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.4.tgz", + "integrity": "sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/psl": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz", + "integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==", + "license": "MIT", + "dependencies": { + "punycode": "^2.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/lupomontero" + } + }, + "node_modules/intl-messageformat": { + "version": "10.7.7", + "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-10.7.7.tgz", + "integrity": "sha512-F134jIoeYMro/3I0h08D0Yt4N9o9pjddU/4IIxMMURqbAtI2wu70X8hvG1V48W49zXHXv3RKSF/po+0fDfsGjA==", + "license": "BSD-3-Clause", + "dependencies": { + "@formatjs/ecma402-abstract": "2.2.4", + "@formatjs/fast-memoize": "2.2.3", + "@formatjs/icu-messageformat-parser": "2.9.4", + "tslib": "2" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.27.3.tgz", + "integrity": "sha512-7ZZtznF9g4l2JCImCo5LNKFHB5eXnN39lLtLY5Tg+VkR0jwOt7TBciMckuiQIOIW7L5tkQOCh3bVGYeXgMx52Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.27.3", + "@babel/plugin-transform-parameters": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/safe-stable-stringify": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz", + "integrity": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "license": "BSD-3-Clause", + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/chrome-launcher": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", + "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", + "license": "Apache-2.0", + "dependencies": { + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0" + }, + "bin": { + "print-chrome-path": "bin/print-chrome-path.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.27.1.tgz", + "integrity": "sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.27.3.tgz", + "integrity": "sha512-s4Jrok82JpiaIprtY2nHsYmrThKvvwgHwjgd7UMiYhZaN0asdXNLr0y+NjTfkA7SyQE5i2Fb7eawUOZmLvyqOA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/global": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", + "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", + "license": "MIT", + "dependencies": { + "min-document": "^2.19.0", + "process": "^0.11.10" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz", + "integrity": "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@discordjs/rest": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@discordjs/rest/-/rest-2.5.1.tgz", + "integrity": "sha512-Tg9840IneBcbrAjcGaQzHUJWFNq1MMWZjTdjJ0WS/89IffaNKc++iOvffucPxQTF/gviO9+9r8kEPea1X5J2Dw==", + "license": "Apache-2.0", + "dependencies": { + "@discordjs/collection": "^2.1.1", + "@discordjs/util": "^1.1.1", + "@sapphire/async-queue": "^1.5.3", + "@sapphire/snowflake": "^3.5.3", + "@vladfrangu/async_event_emitter": "^2.4.6", + "discord-api-types": "^0.38.1", + "magic-bytes.js": "^1.10.0", + "tslib": "^2.6.3", + "undici": "6.21.3" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/discordjs/discord.js?sponsor" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/gm/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "license": "Apache-2.0", + "peer": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", + "license": "BSD-3-Clause" + }, + "node_modules/parse-headers": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.6.tgz", + "integrity": "sha512-Tz11t3uKztEW5FEVZnj1ox8GKblWn+PvHY9TmJV5Mll2uHEwRdR/5Li1OlXoECjLYkApdhWy44ocONwXLiKO5A==", + "license": "MIT" + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz", + "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", + "license": "Unlicense" + }, + "node_modules/serve-static": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/@jimp/plugin-dither": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-dither/-/plugin-dither-0.22.12.tgz", + "integrity": "sha512-jYgGdSdSKl1UUEanX8A85v4+QUm+PE8vHFwlamaKk89s+PXQe7eVE3eNeSZX4inCq63EHL7cX580dMqkoC3ZLw==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "license": "MIT" + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz", + "integrity": "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@jimp/plugin-rotate": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-rotate/-/plugin-rotate-0.22.12.tgz", + "integrity": "sha512-9YNEt7BPAFfTls2FGfKBVgwwLUuKqy+E8bDGGEsOqHtbuhbshVGxN2WMZaD4gh5IDWvR+emmmPPWGgaYNYt1gA==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-blit": ">=0.3.5", + "@jimp/plugin-crop": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/discord.js": { + "version": "14.21.0", + "resolved": "https://registry.npmjs.org/discord.js/-/discord.js-14.21.0.tgz", + "integrity": "sha512-U5w41cEmcnSfwKYlLv5RJjB8Joa+QJyRwIJz5i/eg+v2Qvv6EYpCRhN9I2Rlf0900LuqSDg8edakUATrDZQncQ==", + "license": "Apache-2.0", + "dependencies": { + "@discordjs/builders": "^1.11.2", + "@discordjs/collection": "1.5.3", + "@discordjs/formatters": "^0.6.1", + "@discordjs/rest": "^2.5.1", + "@discordjs/util": "^1.1.1", + "@discordjs/ws": "^1.2.3", + "@sapphire/snowflake": "3.5.3", + "discord-api-types": "^0.38.1", + "fast-deep-equal": "3.1.3", + "lodash.snakecase": "4.1.1", + "magic-bytes.js": "^1.10.0", + "tslib": "^2.6.3", + "undici": "6.21.3" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/discordjs/discord.js?sponsor" + } + }, + "node_modules/prism-media": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/prism-media/-/prism-media-1.3.5.tgz", + "integrity": "sha512-IQdl0Q01m4LrkN1EGIE9lphov5Hy7WWlH6ulf5QdGePLlPas9p2mhgddTEHrlaXYjjFToM1/rWuwF37VF4taaA==", + "license": "Apache-2.0", + "peerDependencies": { + "@discordjs/opus": ">=0.8.0 <1.0.0", + "ffmpeg-static": "^5.0.2 || ^4.2.7 || ^3.0.0 || ^2.4.0", + "node-opus": "^0.3.3", + "opusscript": "^0.0.8" + }, + "peerDependenciesMeta": { + "@discordjs/opus": { + "optional": true }, - "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", - "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "ffmpeg-static": { + "optional": true }, - "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", - "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz", - "integrity": "sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", - "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", - "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz", - "integrity": "sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", - "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", - "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", - "dependencies": { - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz", - "integrity": "sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-json-strings": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", - "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz", - "integrity": "sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", - "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", - "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", - "dependencies": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", - "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", - "dependencies": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", - "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", - "dependencies": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", - "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", - "dependencies": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-new-target": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", - "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz", - "integrity": "sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz", - "integrity": "sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz", - "integrity": "sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==", - "dependencies": { - "@babel/compat-data": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", - "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz", - "integrity": "sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.6.tgz", - "integrity": "sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", - "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz", - "integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz", - "integrity": "sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", - "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz", - "integrity": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "regenerator-transform": "^0.15.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", - "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", - "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-spread": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", - "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", - "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", - "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", - "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz", - "integrity": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz", - "integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", - "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz", - "integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/preset-env": { - "version": "7.22.7", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.7.tgz", - "integrity": "sha512-1whfDtW+CzhETuzYXfcgZAh8/GFMeEbz0V5dVgya8YeJyCU6Y/P2Gnx4Qb3MylK68Zu9UiwUvbPMPTpFAOJ+sQ==", - "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", - "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.22.5", - "@babel/plugin-syntax-import-attributes": "^7.22.5", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.22.5", - "@babel/plugin-transform-async-generator-functions": "^7.22.7", - "@babel/plugin-transform-async-to-generator": "^7.22.5", - "@babel/plugin-transform-block-scoped-functions": "^7.22.5", - "@babel/plugin-transform-block-scoping": "^7.22.5", - "@babel/plugin-transform-class-properties": "^7.22.5", - "@babel/plugin-transform-class-static-block": "^7.22.5", - "@babel/plugin-transform-classes": "^7.22.6", - "@babel/plugin-transform-computed-properties": "^7.22.5", - "@babel/plugin-transform-destructuring": "^7.22.5", - "@babel/plugin-transform-dotall-regex": "^7.22.5", - "@babel/plugin-transform-duplicate-keys": "^7.22.5", - "@babel/plugin-transform-dynamic-import": "^7.22.5", - "@babel/plugin-transform-exponentiation-operator": "^7.22.5", - "@babel/plugin-transform-export-namespace-from": "^7.22.5", - "@babel/plugin-transform-for-of": "^7.22.5", - "@babel/plugin-transform-function-name": "^7.22.5", - "@babel/plugin-transform-json-strings": "^7.22.5", - "@babel/plugin-transform-literals": "^7.22.5", - "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", - "@babel/plugin-transform-member-expression-literals": "^7.22.5", - "@babel/plugin-transform-modules-amd": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.22.5", - "@babel/plugin-transform-modules-systemjs": "^7.22.5", - "@babel/plugin-transform-modules-umd": "^7.22.5", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.22.5", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", - "@babel/plugin-transform-numeric-separator": "^7.22.5", - "@babel/plugin-transform-object-rest-spread": "^7.22.5", - "@babel/plugin-transform-object-super": "^7.22.5", - "@babel/plugin-transform-optional-catch-binding": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.6", - "@babel/plugin-transform-parameters": "^7.22.5", - "@babel/plugin-transform-private-methods": "^7.22.5", - "@babel/plugin-transform-private-property-in-object": "^7.22.5", - "@babel/plugin-transform-property-literals": "^7.22.5", - "@babel/plugin-transform-regenerator": "^7.22.5", - "@babel/plugin-transform-reserved-words": "^7.22.5", - "@babel/plugin-transform-shorthand-properties": "^7.22.5", - "@babel/plugin-transform-spread": "^7.22.5", - "@babel/plugin-transform-sticky-regex": "^7.22.5", - "@babel/plugin-transform-template-literals": "^7.22.5", - "@babel/plugin-transform-typeof-symbol": "^7.22.5", - "@babel/plugin-transform-unicode-escapes": "^7.22.5", - "@babel/plugin-transform-unicode-property-regex": "^7.22.5", - "@babel/plugin-transform-unicode-regex": "^7.22.5", - "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.22.5", - "@nicolo-ribaudo/semver-v6": "^6.3.3", - "babel-plugin-polyfill-corejs2": "^0.4.4", - "babel-plugin-polyfill-corejs3": "^0.8.2", - "babel-plugin-polyfill-regenerator": "^0.5.1", - "core-js-compat": "^3.31.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" - }, - "node_modules/@babel/runtime": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz", - "integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==", - "dependencies": { - "regenerator-runtime": "^0.13.11" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.22.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.8.tgz", - "integrity": "sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==", - "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.7", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.22.7", - "@babel/types": "^7.22.5", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/@babel/traverse/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/@babel/types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", - "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", - "dependencies": { - "@babel/helper-string-parser": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "node_modules/@dabh/diagnostics": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", - "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", - "dependencies": { - "colorspace": "1.1.x", - "enabled": "2.0.x", - "kuler": "^2.0.0" - } - }, - "node_modules/@derhuerst/http-basic": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/@derhuerst/http-basic/-/http-basic-8.2.4.tgz", - "integrity": "sha512-F9rL9k9Xjf5blCz8HsJRO4diy111cayL2vkY2XE4r4t3n0yPXVYy3KD3nJ1qbrSn9743UWSXH4IwuCa/HWlGFw==", - "dependencies": { - "caseless": "^0.12.0", - "concat-stream": "^2.0.0", - "http-response-object": "^3.0.1", - "parse-cache-control": "^1.0.1" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@discordjs/builders": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@discordjs/builders/-/builders-1.6.1.tgz", - "integrity": "sha512-CCcLwn/8ANhlAbhlE18fcaN0hfXTen53/JiwZs1t9oE/Cqa9maA8ZRarkCIsXF4J7J/MYnd0J6IsxeKsq+f6mw==", - "dependencies": { - "@discordjs/formatters": "^0.3.0", - "@discordjs/util": "^0.2.0", - "@sapphire/shapeshift": "^3.8.1", - "discord-api-types": "^0.37.37", - "fast-deep-equal": "^3.1.3", - "ts-mixer": "^6.0.3", - "tslib": "^2.5.0" - }, - "engines": { - "node": ">=16.9.0" - } - }, - "node_modules/@discordjs/collection": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-1.5.0.tgz", - "integrity": "sha512-suyVndkEAAWrGxyw/CPGdtXoRRU6AUNkibtnbJevQzpelkJh3Q1gQqWDpqf5i39CnAn5+LrN0YS+cULeEjq2Yw==", - "engines": { - "node": ">=16.9.0" - } - }, - "node_modules/@discordjs/formatters": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@discordjs/formatters/-/formatters-0.3.0.tgz", - "integrity": "sha512-Fc4MomalbP8HMKEMor3qUiboAKDtR7PSBoPjwm7WYghVRwgJlj5WYvUsriLsxeKk8+Qq2oy+HJlGTUkGvX0YnA==", - "dependencies": { - "discord-api-types": "^0.37.37" - }, - "engines": { - "node": ">=16.9.0" - } - }, - "node_modules/@discordjs/rest": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/@discordjs/rest/-/rest-1.7.0.tgz", - "integrity": "sha512-r2HzmznRIo8IDGYBWqQfkEaGN1LrFfWQd3dSyC4tOpMU8nuVvFUEw6V/lwnG44jyOq+vgyDny2fxeUDMt9I4aQ==", - "dependencies": { - "@discordjs/collection": "^1.5.0", - "@discordjs/util": "^0.2.0", - "@sapphire/async-queue": "^1.5.0", - "@sapphire/snowflake": "^3.4.0", - "discord-api-types": "^0.37.37", - "file-type": "^18.2.1", - "tslib": "^2.5.0", - "undici": "^5.21.0" - }, - "engines": { - "node": ">=16.9.0" - } - }, - "node_modules/@discordjs/util": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@discordjs/util/-/util-0.2.0.tgz", - "integrity": "sha512-/8qNbebFzLWKOOg+UV+RB8itp4SmU5jw0tBUD3ifElW6rYNOj1Ku5JaSW7lLl/WgjjxF01l/1uQPCzkwr110vg==", - "engines": { - "node": ">=16.9.0" - } - }, - "node_modules/@discordjs/voice": { - "version": "0.16.1", - "resolved": "https://registry.npmjs.org/@discordjs/voice/-/voice-0.16.1.tgz", - "integrity": "sha512-uiWiW0Ta6K473yf8zs13RfKuPqm/xU4m4dAidMkIdwqgy1CztbbZBtPLfDkVSKzpW7s6m072C+uQcs4LwF3FhA==", - "dependencies": { - "@types/ws": "^8.5.9", - "discord-api-types": "0.37.61", - "prism-media": "^1.3.5", - "tslib": "^2.6.2", - "ws": "^8.14.2" - }, - "engines": { - "node": ">=16.11.0" - } - }, - "node_modules/@formatjs/ecma402-abstract": { - "version": "1.14.3", - "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.14.3.tgz", - "integrity": "sha512-SlsbRC/RX+/zg4AApWIFNDdkLtFbkq3LNoZWXZCE/nHVKqoIJyaoQyge/I0Y38vLxowUn9KTtXgusLD91+orbg==", - "dependencies": { - "@formatjs/intl-localematcher": "0.2.32", - "tslib": "^2.4.0" - } - }, - "node_modules/@formatjs/fast-memoize": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.0.1.tgz", - "integrity": "sha512-M2GgV+qJn5WJQAYewz7q2Cdl6fobQa69S1AzSM2y0P68ZDbK5cWrJIcPCO395Of1ksftGZoOt4LYCO/j9BKBSA==", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@formatjs/icu-messageformat-parser": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.3.0.tgz", - "integrity": "sha512-xqtlqYAbfJDF4b6e4O828LBNOWXrFcuYadqAbYORlDRwhyJ2bH+xpUBPldZbzRGUN2mxlZ4Ykhm7jvERtmI8NQ==", - "dependencies": { - "@formatjs/ecma402-abstract": "1.14.3", - "@formatjs/icu-skeleton-parser": "1.3.18", - "tslib": "^2.4.0" - } - }, - "node_modules/@formatjs/icu-skeleton-parser": { - "version": "1.3.18", - "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.3.18.tgz", - "integrity": "sha512-ND1ZkZfmLPcHjAH1sVpkpQxA+QYfOX3py3SjKWMUVGDow18gZ0WPqz3F+pJLYQMpS2LnnQ5zYR2jPVYTbRwMpg==", - "dependencies": { - "@formatjs/ecma402-abstract": "1.14.3", - "tslib": "^2.4.0" - } - }, - "node_modules/@formatjs/intl": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/@formatjs/intl/-/intl-2.6.9.tgz", - "integrity": "sha512-EtcMZ9O24YSASu/jGOaTQtArx7XROjlKiO4KmkxJ/3EyAQLCr5hrS+KKvNud0a7GIwBucOb3IFrZ7WiSm2A/Cw==", - "dependencies": { - "@formatjs/ecma402-abstract": "1.14.3", - "@formatjs/fast-memoize": "2.0.1", - "@formatjs/icu-messageformat-parser": "2.3.0", - "@formatjs/intl-displaynames": "6.2.6", - "@formatjs/intl-listformat": "7.1.9", - "intl-messageformat": "10.3.3", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "typescript": "^4.7" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@formatjs/intl-displaynames": { - "version": "6.2.6", - "resolved": "https://registry.npmjs.org/@formatjs/intl-displaynames/-/intl-displaynames-6.2.6.tgz", - "integrity": "sha512-scf5AQTk9EjpvPhboo5sizVOvidTdMOnajv9z+0cejvl7JNl9bl/aMrNBgC72UH+bP3l45usPUKAGskV6sNIrA==", - "dependencies": { - "@formatjs/ecma402-abstract": "1.14.3", - "@formatjs/intl-localematcher": "0.2.32", - "tslib": "^2.4.0" - } - }, - "node_modules/@formatjs/intl-listformat": { - "version": "7.1.9", - "resolved": "https://registry.npmjs.org/@formatjs/intl-listformat/-/intl-listformat-7.1.9.tgz", - "integrity": "sha512-5YikxwRqRXTVWVujhswDOTCq6gs+m9IcNbNZLa6FLtyBStAjEsuE2vAU+lPsbz9ZTST57D5fodjIh2JXT6sMWQ==", - "dependencies": { - "@formatjs/ecma402-abstract": "1.14.3", - "@formatjs/intl-localematcher": "0.2.32", - "tslib": "^2.4.0" - } - }, - "node_modules/@formatjs/intl-localematcher": { - "version": "0.2.32", - "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.2.32.tgz", - "integrity": "sha512-k/MEBstff4sttohyEpXxCmC3MqbUn9VvHGlZ8fauLzkbwXmVrEeyzS+4uhrvAk9DWU9/7otYWxyDox4nT/KVLQ==", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@jimp/bmp": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.22.8.tgz", - "integrity": "sha512-JEMKgM1AEvvWfn9ZCHn62nK+QCE3Pb/ZhPdL3NF0ZgKNww6pqOmo6KqXzqY18JLB7c0epuTp4GPDPDhOh/ou1g==", - "dependencies": { - "@jimp/utils": "^0.22.8", - "bmp-js": "^0.1.0" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/core": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/core/-/core-0.22.8.tgz", - "integrity": "sha512-vkN28aFikzQieA6bGxN+qe20pseCAemCyUI0YmRkJIArlb6OujtAwWAKyokv2lylV56bq8EQGIz+Y30OXUnRqg==", - "dependencies": { - "@jimp/utils": "^0.22.8", - "any-base": "^1.1.0", - "buffer": "^5.2.0", - "exif-parser": "^0.1.12", - "file-type": "^16.5.4", - "isomorphic-fetch": "^3.0.0", - "mkdirp": "^2.1.3", - "pixelmatch": "^4.0.2", - "tinycolor2": "^1.6.0" - } - }, - "node_modules/@jimp/core/node_modules/file-type": { - "version": "16.5.4", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz", - "integrity": "sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==", - "dependencies": { - "readable-web-to-node-stream": "^3.0.0", - "strtok3": "^6.2.4", - "token-types": "^4.1.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/file-type?sponsor=1" - } - }, - "node_modules/@jimp/core/node_modules/peek-readable": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz", - "integrity": "sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==", - "engines": { - "node": ">=8" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/@jimp/core/node_modules/strtok3": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz", - "integrity": "sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==", - "dependencies": { - "@tokenizer/token": "^0.3.0", - "peek-readable": "^4.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/@jimp/core/node_modules/token-types": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz", - "integrity": "sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==", - "dependencies": { - "@tokenizer/token": "^0.3.0", - "ieee754": "^1.2.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/@jimp/custom": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/custom/-/custom-0.22.8.tgz", - "integrity": "sha512-u6lP9x/HNeGHB0Oojv4c2mhuDvn7G0ikzYbK4IKLsH4HzHxt62faMjBzQMcFhKJhR6UiiKE/jiHrhGvBT/fMkw==", - "dependencies": { - "@jimp/core": "^0.22.8" - } - }, - "node_modules/@jimp/gif": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/gif/-/gif-0.22.8.tgz", - "integrity": "sha512-I0l6koS67IPU40RPxCJTD1NvePEd8vUIHTejx1ly0jrjGnumbqdarAlBUkDrKfPPc+Fnqp84hBbSN1w5hNPT6w==", - "dependencies": { - "@jimp/utils": "^0.22.8", - "gifwrap": "^0.9.2", - "omggif": "^1.0.9" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/jpeg": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.22.8.tgz", - "integrity": "sha512-hLXrQ7/0QiUhAVAF10dfGCSq3hvyqjKltlpu/87b3wqMDKe9KdvhX1AJHiUUrAbJv1fAcnOmQGTyXGuySa1D6A==", - "dependencies": { - "@jimp/utils": "^0.22.8", - "jpeg-js": "^0.4.4" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-blit": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-blit/-/plugin-blit-0.22.8.tgz", - "integrity": "sha512-rQ19txVCKIwo74HtgFodFt4//0ATPCJK+f24riqzb+nx+1JaOo1xRvpJqg4moirHwKR2fhwdDxmY7KX20kCeYA==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-blur": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-blur/-/plugin-blur-0.22.8.tgz", - "integrity": "sha512-GWbNK3YW6k2EKiGJdpAFEr0jezPBtiVxj2wG/lCPuWJz7KmzSSN99hQjIy73xQxoBCRdALfJlkhe3leFNRueSQ==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-circle": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-circle/-/plugin-circle-0.22.8.tgz", - "integrity": "sha512-qPCw8XFW8opT89ciFDuvs+eB3EB1mZIJWVajD2qAlprHiE7YGr34TkM7N5MNr3qZ1pJgkYdW6+HbBrJwBaonqw==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-color": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-color/-/plugin-color-0.22.8.tgz", - "integrity": "sha512-ogkbg6rpDVH/mMLgAQKg17z3oZE0VN7ZWxNoH12fUHchqKz1I57zpa65fxZe2I8T5Xz97HR3x+7V7oI8qQGdSA==", - "dependencies": { - "@jimp/utils": "^0.22.8", - "tinycolor2": "^1.6.0" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-contain": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-contain/-/plugin-contain-0.22.8.tgz", - "integrity": "sha512-oiaPLdJt9Dk+XEEhM/OU3lFemM51mA9NgMCAdburSCjDzKacJYBGFSHjTOhXzcxOie/ZDpOYN/UzFGKy8Dgl9A==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5", - "@jimp/plugin-blit": ">=0.3.5", - "@jimp/plugin-resize": ">=0.3.5", - "@jimp/plugin-scale": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-cover": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-cover/-/plugin-cover-0.22.8.tgz", - "integrity": "sha512-mO68w1m/LhfuHU8LKHY05a4/hhWnY4t+T+8JCw9t+5yfzA4+LofBZZKtFtWgwf/QGe1y3X2rtUU/avAzDUKyyA==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5", - "@jimp/plugin-crop": ">=0.3.5", - "@jimp/plugin-resize": ">=0.3.5", - "@jimp/plugin-scale": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-crop": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-crop/-/plugin-crop-0.22.8.tgz", - "integrity": "sha512-ns4oH0h0gezYsbuH8RThcMLY5uTLk/vnqOVjWCehMHEzxi0DHMWCmpcb6bC//vJ+XFNhtVGn1ALN7+ROmPrj+A==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-displace": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-displace/-/plugin-displace-0.22.8.tgz", - "integrity": "sha512-Cj8nHYgsdFynOIx3dbbiVwRuZn3xO+RVfwkTRy0JBye+K2AU8SQJS+hSFNMQFTZt5djivh6kh0TzvR/6LkOd1w==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-dither": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-dither/-/plugin-dither-0.22.8.tgz", - "integrity": "sha512-oE0Us/6bEgrgEg56plU3jSBzvB9iGhweKUHmxYMWnQbFCHP4mNCtPAs8+Fmq6c+m98ZgBgRcrJTnC7lphHkGyw==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-fisheye": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-fisheye/-/plugin-fisheye-0.22.8.tgz", - "integrity": "sha512-bWvYY/nfMcKclWEaRyAir+YsT6C5St823HUQAsewZowTrJmme+w4U2a6InsryTHUL01BBcV5BLH0aDHuV3StvA==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-flip": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-flip/-/plugin-flip-0.22.8.tgz", - "integrity": "sha512-0NFTNzjsdmOQkaIkNjZqO3/yU4SQb9nnWQXsLS1fFo+9QrIL5v8vVkXpk/rhiND6PyTj2mMTNjOa76GuZcC+iQ==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5", - "@jimp/plugin-rotate": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-gaussian": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-gaussian/-/plugin-gaussian-0.22.8.tgz", - "integrity": "sha512-E/f14aLzCS50QAM7K+InI9V61KVy/Zx52vy7Jjfo1h7qKhQHss3PYaydaH0N6qlXRNeXgh+4/32P9JfieLMcdw==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-invert": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-invert/-/plugin-invert-0.22.8.tgz", - "integrity": "sha512-UauP39FF2cwbA5VU+Tz9VlNa9rtULPSHZb0Huwcjqjm9/G/xVN69VJ8+RKiFC4zM1/kYAUp/6IRwPa6qdKJpSw==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-mask": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-mask/-/plugin-mask-0.22.8.tgz", - "integrity": "sha512-bhg5+3i8x1CmYj6cjvPBQZLwZEI3iK3gJWF25ZHF+12d3cqDuJngtr8oRQOQLlAgvKmrj9FXIiEPDczUI9cnWQ==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-normalize": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-normalize/-/plugin-normalize-0.22.8.tgz", - "integrity": "sha512-Yg5nreAR1JYuSObu3ExlgaLxVeW6VvjVL5qFwiPFxSNlG8JIwL1Ir3K3ChSnnvymyZvJMHb6YKTYNfXKw5Da6g==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-print": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-print/-/plugin-print-0.22.8.tgz", - "integrity": "sha512-86O5ejCDi543IYl0TykSmNWErzAjEYhiAxNQb2F7rFRT38WJYNVsvJ6QhxhDQHKxSmF5iwmqbk0jYk5Wp2Z1kw==", - "dependencies": { - "@jimp/utils": "^0.22.8", - "load-bmfont": "^1.4.1" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5", - "@jimp/plugin-blit": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-resize": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.22.8.tgz", - "integrity": "sha512-kg8ArQRPqv/iU3DWNXCa8kcVIhoq64Ze0aGCAeFLKlAq/59f5pzAci6m6vV4L/uOVdYmUa9/kYwIFY6RWKpfzQ==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-rotate": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-rotate/-/plugin-rotate-0.22.8.tgz", - "integrity": "sha512-9a+VPZWMN/Cks76wf8LjM5RVA3ntP9+NAdsS1SZhhXel7U3Re/dWMouIEbo3QTt6K+igRo4txUCdZiw4ZucvkQ==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5", - "@jimp/plugin-blit": ">=0.3.5", - "@jimp/plugin-crop": ">=0.3.5", - "@jimp/plugin-resize": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-scale": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-scale/-/plugin-scale-0.22.8.tgz", - "integrity": "sha512-dQS4pG6DX6endu8zUpvBBOEtGC+ljDDDNw0scSXY71TxyQdNo5Ro0apfsppjmuAr8rNotRkfyxbITKkXQDRUDQ==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5", - "@jimp/plugin-resize": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-shadow": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-shadow/-/plugin-shadow-0.22.8.tgz", - "integrity": "sha512-HyAhr7OblTQh+BoKHQg4qbS9MweNlH77yfpBqUEyDtfyjI5r06+5chf1ZdLRIPEWv/BdCfdI/g81Wv69muCMwA==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5", - "@jimp/plugin-blur": ">=0.3.5", - "@jimp/plugin-resize": ">=0.3.5" - } - }, - "node_modules/@jimp/plugin-threshold": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-threshold/-/plugin-threshold-0.22.8.tgz", - "integrity": "sha512-ZmkfH0PtjvF1UcKsjw0H7V6r+LC0yKzEfg76Jhs2nIqIgsxsSOVfHwS7z0/1IWnyXxSw36m+NjCAotNHRILGmA==", - "dependencies": { - "@jimp/utils": "^0.22.8" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5", - "@jimp/plugin-color": ">=0.8.0", - "@jimp/plugin-resize": ">=0.8.0" - } - }, - "node_modules/@jimp/plugins": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugins/-/plugins-0.22.8.tgz", - "integrity": "sha512-ieI2+kCpmIfjwVlT7B67ULCzxMizfj7LspJh9HnIZCDXQB9GBOZ9KImLYc75Krae0dP/3FR7FglLiSI7fkOHbw==", - "dependencies": { - "@jimp/plugin-blit": "^0.22.8", - "@jimp/plugin-blur": "^0.22.8", - "@jimp/plugin-circle": "^0.22.8", - "@jimp/plugin-color": "^0.22.8", - "@jimp/plugin-contain": "^0.22.8", - "@jimp/plugin-cover": "^0.22.8", - "@jimp/plugin-crop": "^0.22.8", - "@jimp/plugin-displace": "^0.22.8", - "@jimp/plugin-dither": "^0.22.8", - "@jimp/plugin-fisheye": "^0.22.8", - "@jimp/plugin-flip": "^0.22.8", - "@jimp/plugin-gaussian": "^0.22.8", - "@jimp/plugin-invert": "^0.22.8", - "@jimp/plugin-mask": "^0.22.8", - "@jimp/plugin-normalize": "^0.22.8", - "@jimp/plugin-print": "^0.22.8", - "@jimp/plugin-resize": "^0.22.8", - "@jimp/plugin-rotate": "^0.22.8", - "@jimp/plugin-scale": "^0.22.8", - "@jimp/plugin-shadow": "^0.22.8", - "@jimp/plugin-threshold": "^0.22.8", - "timm": "^1.6.1" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/png": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/png/-/png-0.22.8.tgz", - "integrity": "sha512-XOj11kcCr8zKg24QSwlRfH9k4hbV6rkMGUVxMS3puRzzB0FBSQy42NBYEfYf2XlY2QJSAByPl4AYerOtKb805w==", - "dependencies": { - "@jimp/utils": "^0.22.8", - "pngjs": "^6.0.0" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/tiff": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.22.8.tgz", - "integrity": "sha512-K0hYUVW5MLgwq3jiHVHa6LvP05J1rXOlRCC+5dMTUnAXVwi45+MKsqA/8lzzwhHYJ65CNhZwy6D3+ZNzM9SIBQ==", - "dependencies": { - "utif2": "^4.0.1" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/types": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/types/-/types-0.22.8.tgz", - "integrity": "sha512-9+xc+mzuYwu0i+6dsnhXiUgfcS+Ktqn5q2jczoKyyBT0cOKgsk+57EIeFLgpTfVGRKRR0y/UIdHByeCzGguF3A==", - "dependencies": { - "@jimp/bmp": "^0.22.8", - "@jimp/gif": "^0.22.8", - "@jimp/jpeg": "^0.22.8", - "@jimp/png": "^0.22.8", - "@jimp/tiff": "^0.22.8", - "timm": "^1.6.1" - }, - "peerDependencies": { - "@jimp/custom": ">=0.3.5" - } - }, - "node_modules/@jimp/utils": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/utils/-/utils-0.22.8.tgz", - "integrity": "sha512-AaqjfqDeLzSFzrbGRKHMXg/ntiWKvoG9tpVgWzgOx5/gPWj/IyGfztojLTTvY8HqZCr25z8z91u2lAQD2v46Jw==", - "dependencies": { - "regenerator-runtime": "^0.13.3" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", - "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - }, - "node_modules/@liamcottle/rustplus.js": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@liamcottle/rustplus.js/-/rustplus.js-2.4.0.tgz", - "integrity": "sha512-Njiwy5bUCngylu5Mepsg8Q35eARofIYxT84uoF5uamhMxjePOLS8qohErPhNAY1EcoI1GY/k2ebyf8HYfHo7vQ==", - "dependencies": { - "axios": "^1.2.2", - "chrome-launcher": "^0.15.0", - "command-line-args": "^5.2.0", - "command-line-usage": "^6.1.1", - "express": "^4.17.1", - "jimp": "^0.22.7", - "protobufjs": "^7.1.2", - "push-receiver": "^2.1.0", - "uuid": "^9.0.0", - "ws": "^8.3.0" - }, - "bin": { - "rustplus": "cli/index.js" - } - }, - "node_modules/@nicolo-ribaudo/semver-v6": { - "version": "6.3.3", - "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/semver-v6/-/semver-v6-6.3.3.tgz", - "integrity": "sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@protobufjs/aspromise": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", - "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==" - }, - "node_modules/@protobufjs/base64": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", - "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" - }, - "node_modules/@protobufjs/codegen": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", - "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" - }, - "node_modules/@protobufjs/eventemitter": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", - "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==" - }, - "node_modules/@protobufjs/fetch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", - "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", - "dependencies": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" - } - }, - "node_modules/@protobufjs/float": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", - "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==" - }, - "node_modules/@protobufjs/inquire": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", - "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==" - }, - "node_modules/@protobufjs/path": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", - "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==" - }, - "node_modules/@protobufjs/pool": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", - "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==" - }, - "node_modules/@protobufjs/utf8": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", - "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==" - }, - "node_modules/@sapphire/async-queue": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@sapphire/async-queue/-/async-queue-1.5.0.tgz", - "integrity": "sha512-JkLdIsP8fPAdh9ZZjrbHWR/+mZj0wvKS5ICibcLrRI1j84UmLMshx5n9QmL8b95d4onJ2xxiyugTgSAX7AalmA==", - "engines": { - "node": ">=v14.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@sapphire/shapeshift": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/@sapphire/shapeshift/-/shapeshift-3.8.2.tgz", - "integrity": "sha512-NXpnJAsxN3/h9TqQPntOeVWZrpIuucqXI3IWF6tj2fWCoRLCuVK5wx7Dtg7pRrtkYfsMUbDqgKoX26vrC5iYfA==", - "dependencies": { - "fast-deep-equal": "^3.1.3", - "lodash": "^4.17.21" - }, - "engines": { - "node": ">=v14.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@sapphire/snowflake": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@sapphire/snowflake/-/snowflake-3.4.0.tgz", - "integrity": "sha512-zZxymtVO6zeXVMPds+6d7gv/OfnCc25M1Z+7ZLB0oPmeMTPeRWVPQSS16oDJy5ZsyCOLj7M6mbZml5gWXcVRNw==", - "engines": { - "node": ">=v14.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/@tokenizer/token": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", - "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" - }, - "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==" - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", - "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==" - }, - "node_modules/@types/long": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", - "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==" - }, - "node_modules/@types/node": { - "version": "18.15.11", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", - "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==" - }, - "node_modules/@types/triple-beam": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.2.tgz", - "integrity": "sha512-txGIh+0eDFzKGC25zORnswy+br1Ha7hj5cMVwKIU7+s0U2AxxJru/jZSMU6OC9MJWP6+pc/hc6ZjyZShpsyY2g==" - }, - "node_modules/@types/ws": { - "version": "8.5.10", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", - "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/agent-base/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/agent-base/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/any-base": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz", - "integrity": "sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==" - }, - "node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" - }, - "node_modules/array-back": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", - "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==", - "engines": { - "node": ">=6" - } - }, - "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - }, - "node_modules/array-parallel": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/array-parallel/-/array-parallel-0.1.3.tgz", - "integrity": "sha512-TDPTwSWW5E4oiFiKmz6RGJ/a80Y91GuLgUYuLd49+XBS75tYo8PNgaT2K/OxuQYqkoI852MDGBorg9OcUSTQ8w==" - }, - "node_modules/array-series": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/array-series/-/array-series-0.1.5.tgz", - "integrity": "sha512-L0XlBwfx9QetHOsbLDrE/vh2t018w9462HM3iaFfxRiK83aJjAt/Ja3NMkOW7FICwWTlQBa3ZbL5FKhuQWkDrg==" - }, - "node_modules/asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", - "dependencies": { - "safer-buffer": "~2.1.0" - } - }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", - "engines": { - "node": "*" - } - }, - "node_modules/aws4": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" - }, - "node_modules/axios": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.3.5.tgz", - "integrity": "sha512-glL/PvG/E+xCWwV8S6nCHcrfg1exGx7vxyUIivIA1iL7BIh6bePylCfVHwp6k13ao7SATxB6imau2kqY+I67kw==", - "dependencies": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.4.tgz", - "integrity": "sha512-9WeK9snM1BfxB38goUEv2FLnA6ja07UMfazFHzCXUb3NyDZAwfXvQiURQ6guTTMeHcOsdknULm1PDhs4uWtKyA==", - "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.4.1", - "@nicolo-ribaudo/semver-v6": "^6.3.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.2.tgz", - "integrity": "sha512-Cid+Jv1BrY9ReW9lIfNlNpsI53N+FN7gE+f73zLAUbr9C52W4gKLWSByx47pfDJsEysojKArqOtOKZSVIIUTuQ==", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.1", - "core-js-compat": "^3.31.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.1.tgz", - "integrity": "sha512-L8OyySuI6OSQ5hFy9O+7zFjyr4WhAfRjLIOkhQGYl+emwJkd/S4XXT1JpfrgR1jrQ1NcGiOh+yAdGlF8pnC3Jw==", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "dependencies": { - "tweetnacl": "^0.14.3" - } - }, - "node_modules/bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - }, - "node_modules/bmp-js": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz", - "integrity": "sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==" - }, - "node_modules/body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/browserslist": { - "version": "4.21.9", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", - "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001503", - "electron-to-chromium": "^1.4.431", - "node-releases": "^2.0.12", - "update-browserslist-db": "^1.0.11" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/buffer-equal": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", - "integrity": "sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" - } - }, - "node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001513", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001513.tgz", - "integrity": "sha512-pnjGJo7SOOjAGytZZ203Em95MRM8Cr6jhCXNF/FAXTpCTRTECnqQWLpiTRqrFtdYcth8hf4WECUpkezuYsMVww==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chalk/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/chrome-launcher": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.1.tgz", - "integrity": "sha512-UugC8u59/w2AyX5sHLZUHoxBAiSiunUhZa3zZwMH6zPVis0C3dDKiRWyUGIo14tTbZHGVviWxv3PQWZ7taZ4fg==", - "dependencies": { - "@types/node": "*", - "escape-string-regexp": "^4.0.0", - "is-wsl": "^2.2.0", - "lighthouse-logger": "^1.0.0" - }, - "bin": { - "print-chrome-path": "bin/print-chrome-path.js" - }, - "engines": { - "node": ">=12.13.0" - } - }, - "node_modules/color": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", - "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", - "dependencies": { - "color-convert": "^1.9.3", - "color-string": "^1.6.0" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/colorspace": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", - "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", - "dependencies": { - "color": "^3.1.3", - "text-hex": "1.0.x" - } - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/command-line-args": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz", - "integrity": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==", - "dependencies": { - "array-back": "^3.1.0", - "find-replace": "^3.0.0", - "lodash.camelcase": "^4.3.0", - "typical": "^4.0.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/command-line-usage": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.3.tgz", - "integrity": "sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==", - "dependencies": { - "array-back": "^4.0.2", - "chalk": "^2.4.2", - "table-layout": "^1.0.2", - "typical": "^5.2.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/command-line-usage/node_modules/array-back": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/command-line-usage/node_modules/typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/concat-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", - "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", - "engines": [ - "node >= 6.0" - ], - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.0.2", - "typedarray": "^0.0.6" - } - }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "peer": true - }, - "node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - }, - "node_modules/core-js-compat": { - "version": "3.31.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.1.tgz", - "integrity": "sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA==", - "dependencies": { - "browserslist": "^4.21.9" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" - }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" - }, - "node_modules/cross-spawn": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.2.tgz", - "integrity": "sha512-yAXz/pA1tD8Gtg2S98Ekf/sewp3Lcp3YoFKJ4Hkp5h5yLWnKVTDU0kwjKJ8NDCYcfTLfyGkzTikst+jWypT1iA==", - "dependencies": { - "lru-cache": "^4.0.1", - "which": "^1.2.9" - } - }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", - "dependencies": { - "assert-plus": "^1.0.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/discord-api-types": { - "version": "0.37.61", - "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.37.61.tgz", - "integrity": "sha512-o/dXNFfhBpYHpQFdT6FWzeO7pKc838QeeZ9d91CfVAtpr5XLK4B/zYxQbYgPdoMiTDvJfzcsLW5naXgmHGDNXw==" - }, - "node_modules/discord.js": { - "version": "14.9.0", - "resolved": "https://registry.npmjs.org/discord.js/-/discord.js-14.9.0.tgz", - "integrity": "sha512-ygGms5xP4hG+QrrY9k7d/OYCzMltSMtdl/2Snzq/nLCiZo+Sna91Ulv9l0+B5Jd/Czcq37B7wJAnmja7GOa+bg==", - "dependencies": { - "@discordjs/builders": "^1.6.0", - "@discordjs/collection": "^1.5.0", - "@discordjs/formatters": "^0.3.0", - "@discordjs/rest": "^1.7.0", - "@discordjs/util": "^0.2.0", - "@sapphire/snowflake": "^3.4.0", - "@types/ws": "^8.5.4", - "discord-api-types": "^0.37.37", - "fast-deep-equal": "^3.1.3", - "lodash.snakecase": "^4.1.1", - "tslib": "^2.5.0", - "undici": "^5.21.0", - "ws": "^8.13.0" - }, - "engines": { - "node": ">=16.9.0" - } - }, - "node_modules/dom-walk": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", - "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "node_modules/electron-to-chromium": { - "version": "1.4.454", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.454.tgz", - "integrity": "sha512-pmf1rbAStw8UEQ0sr2cdJtWl48ZMuPD9Sto8HVQOq9vx9j2WgDEN6lYoaqFvqEHYOmGA9oRGn7LqWI9ta0YugQ==" - }, - "node_modules/enabled": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", - "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/exif-parser": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz", - "integrity": "sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==" - }, - "node_modules/express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", - "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "engines": [ - "node >=0.6.0" - ] - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fecha": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", - "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" - }, - "node_modules/ffmpeg-static": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ffmpeg-static/-/ffmpeg-static-5.2.0.tgz", - "integrity": "sha512-WrM7kLW+do9HLr+H6tk7LzQ7kPqbAgLjdzNE32+u3Ff11gXt9Kkkd2nusGFrlWMIe+XaA97t+I8JS7sZIrvRgA==", - "hasInstallScript": true, - "dependencies": { - "@derhuerst/http-basic": "^8.2.0", - "env-paths": "^2.2.0", - "https-proxy-agent": "^5.0.0", - "progress": "^2.0.3" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/file-type": { - "version": "18.2.1", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-18.2.1.tgz", - "integrity": "sha512-Yw5MtnMv7vgD2/6Bjmmuegc8bQEVA9GmAyaR18bMYWKqsWDG9wgYZ1j4I6gNMF5Y5JBDcUcjRQqNQx7Y8uotcg==", - "dependencies": { - "readable-web-to-node-stream": "^3.0.2", - "strtok3": "^7.0.0", - "token-types": "^5.0.1" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sindresorhus/file-type?sponsor=1" - } - }, - "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/find-replace": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", - "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", - "dependencies": { - "array-back": "^3.0.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/fn.name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", - "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" - }, - "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", - "engines": { - "node": "*" - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "peer": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", - "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "dependencies": { - "assert-plus": "^1.0.0" - } - }, - "node_modules/gifwrap": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/gifwrap/-/gifwrap-0.9.4.tgz", - "integrity": "sha512-MDMwbhASQuVeD4JKd1fKgNgCRL3fGqMM4WaqpNhWO0JiMOAjbQdumbs4BbBZEy9/M00EHEjKN3HieVhCUlwjeQ==", - "dependencies": { - "image-q": "^4.0.0", - "omggif": "^1.0.10" - } - }, - "node_modules/global": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", - "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", - "dependencies": { - "min-document": "^2.19.0", - "process": "^0.11.10" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/gm": { - "version": "1.25.0", - "resolved": "https://registry.npmjs.org/gm/-/gm-1.25.0.tgz", - "integrity": "sha512-4kKdWXTtgQ4biIo7hZA396HT062nDVVHPjQcurNZ3o/voYN+o5FUC5kOwuORbpExp3XbTJ3SU7iRipiIhQtovw==", - "dependencies": { - "array-parallel": "~0.1.3", - "array-series": "~0.1.5", - "cross-spawn": "^4.0.0", - "debug": "^3.1.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/gm/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/gm/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "deprecated": "this library is no longer supported", - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/http_ece": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/http_ece/-/http_ece-1.1.0.tgz", - "integrity": "sha512-bptAfCDdPJxOs5zYSe7Y3lpr772s1G346R4Td5LgRUeCwIGpCGDUTJxRrhTNcAXbx37spge0kWEIH7QAYWNTlA==", - "dependencies": { - "urlsafe-base64": "~1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-response-object": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/http-response-object/-/http-response-object-3.0.2.tgz", - "integrity": "sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA==", - "dependencies": { - "@types/node": "^10.0.3" - } - }, - "node_modules/http-response-object/node_modules/@types/node": { - "version": "10.17.60", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", - "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==" - }, - "node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/https-proxy-agent/node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/https-proxy-agent/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/image-q": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/image-q/-/image-q-4.0.0.tgz", - "integrity": "sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==", - "dependencies": { - "@types/node": "16.9.1" - } - }, - "node_modules/image-q/node_modules/@types/node": { - "version": "16.9.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.9.1.tgz", - "integrity": "sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==" - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/intl-messageformat": { - "version": "10.3.3", - "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-10.3.3.tgz", - "integrity": "sha512-un/f07/g2e/3Q8e1ghDKET+el22Bi49M7O/rHxd597R+oLpPOMykSv5s51cABVfu3FZW+fea4hrzf2MHu1W4hw==", - "dependencies": { - "@formatjs/ecma402-abstract": "1.14.3", - "@formatjs/fast-memoize": "2.0.1", - "@formatjs/icu-messageformat-parser": "2.3.0", - "tslib": "^2.4.0" - } - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - }, - "node_modules/is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", - "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" - }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/isomorphic-fetch": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", - "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", - "dependencies": { - "node-fetch": "^2.6.1", - "whatwg-fetch": "^3.4.1" - } - }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" - }, - "node_modules/jimp": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/jimp/-/jimp-0.22.8.tgz", - "integrity": "sha512-pBbrooJMX7795sDcxx1XpwNZC8B/ITyDV+JK2/1qNbQl/1UWqWeh5Dq7qQpMZl5jLdcFDv5IVTM+OhpafSqSFA==", - "dependencies": { - "@jimp/custom": "^0.22.8", - "@jimp/plugins": "^0.22.8", - "@jimp/types": "^0.22.8", - "regenerator-runtime": "^0.13.3" - } - }, - "node_modules/jpeg-js": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", - "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "peer": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/kuler": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", - "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" - }, - "node_modules/libsodium": { - "version": "0.7.13", - "resolved": "https://registry.npmjs.org/libsodium/-/libsodium-0.7.13.tgz", - "integrity": "sha512-mK8ju0fnrKXXfleL53vtp9xiPq5hKM0zbDQtcxQIsSmxNgSxqCj6R7Hl9PkrNe2j29T4yoDaF7DJLK9/i5iWUw==" - }, - "node_modules/libsodium-wrappers": { - "version": "0.7.13", - "resolved": "https://registry.npmjs.org/libsodium-wrappers/-/libsodium-wrappers-0.7.13.tgz", - "integrity": "sha512-kasvDsEi/r1fMzKouIDv7B8I6vNmknXwGiYodErGuESoFTohGSKZplFtVxZqHaoQ217AynyIFgnOVRitpHs0Qw==", - "dependencies": { - "libsodium": "^0.7.13" - } - }, - "node_modules/lighthouse-logger": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.3.0.tgz", - "integrity": "sha512-BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA==", - "dependencies": { - "debug": "^2.6.9", - "marky": "^1.2.2" - } - }, - "node_modules/load-bmfont": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", - "integrity": "sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA==", - "dependencies": { - "buffer-equal": "0.0.1", - "mime": "^1.3.4", - "parse-bmfont-ascii": "^1.0.3", - "parse-bmfont-binary": "^1.0.5", - "parse-bmfont-xml": "^1.1.4", - "phin": "^2.9.1", - "xhr": "^2.0.1", - "xtend": "^4.0.0" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - }, - "node_modules/lodash.snakecase": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", - "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==" - }, - "node_modules/logform": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/logform/-/logform-2.5.1.tgz", - "integrity": "sha512-9FyqAm9o9NKKfiAKfZoYo9bGXXuwMkxQiQttkT4YjjVtQVIQtK6LmVtlxmCaFswo6N4AfEkHqZTV0taDtPotNg==", - "dependencies": { - "@colors/colors": "1.5.0", - "@types/triple-beam": "^1.3.2", - "fecha": "^4.2.0", - "ms": "^2.1.1", - "safe-stable-stringify": "^2.3.1", - "triple-beam": "^1.3.0" - } - }, - "node_modules/logform/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/long": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.1.tgz", - "integrity": "sha512-GKSNGeNAtw8IryjjkhZxuKB3JzlcLTwjtiQCHKvqQet81I93kXslhDQruGI/QsddO83mcDToBVy7GqGS/zYf/A==" - }, - "node_modules/lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" - }, - "node_modules/marky": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz", - "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==" - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/min-document": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "integrity": "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==", - "dependencies": { - "dom-walk": "^0.1.0" - } - }, - "node_modules/mkdirp": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-2.1.6.tgz", - "integrity": "sha512-+hEnITedc8LAtIP9u3HJDFIdcLV2vXP33sqLLIzkv1Db1zO/1OxbvYf0Y1OC/S/Qo5dxHXepofhmxL02PsKe+A==", - "bin": { - "mkdirp": "dist/cjs/src/bin.js" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "engines": { - "node": "*" - } - }, - "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/omggif": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", - "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==" - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/one-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", - "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", - "dependencies": { - "fn.name": "1.x.x" - } - }, - "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - }, - "node_modules/parse-bmfont-ascii": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz", - "integrity": "sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==" - }, - "node_modules/parse-bmfont-binary": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz", - "integrity": "sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==" - }, - "node_modules/parse-bmfont-xml": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz", - "integrity": "sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==", - "dependencies": { - "xml-parse-from-string": "^1.0.0", - "xml2js": "^0.4.5" - } - }, - "node_modules/parse-cache-control": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-cache-control/-/parse-cache-control-1.0.1.tgz", - "integrity": "sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==" - }, - "node_modules/parse-headers": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.5.tgz", - "integrity": "sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==" - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - }, - "node_modules/peek-readable": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-5.0.0.tgz", - "integrity": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==", - "engines": { - "node": ">=14.16" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" - }, - "node_modules/phin": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz", - "integrity": "sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==" - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/pixelmatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz", - "integrity": "sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA==", - "dependencies": { - "pngjs": "^3.0.0" - }, - "bin": { - "pixelmatch": "bin/pixelmatch" - } - }, - "node_modules/pixelmatch/node_modules/pngjs": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", - "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/pngjs": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz", - "integrity": "sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg==", - "engines": { - "node": ">=12.13.0" - } - }, - "node_modules/prism-media": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/prism-media/-/prism-media-1.3.5.tgz", - "integrity": "sha512-IQdl0Q01m4LrkN1EGIE9lphov5Hy7WWlH6ulf5QdGePLlPas9p2mhgddTEHrlaXYjjFToM1/rWuwF37VF4taaA==", - "peerDependencies": { - "@discordjs/opus": ">=0.8.0 <1.0.0", - "ffmpeg-static": "^5.0.2 || ^4.2.7 || ^3.0.0 || ^2.4.0", - "node-opus": "^0.3.3", - "opusscript": "^0.0.8" - }, - "peerDependenciesMeta": { - "@discordjs/opus": { - "optional": true - }, - "ffmpeg-static": { - "optional": true - }, - "node-opus": { - "optional": true - }, - "opusscript": { - "optional": true - } - } - }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/protobufjs": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.4.tgz", - "integrity": "sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==", - "hasInstallScript": true, - "dependencies": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/node": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - }, - "node_modules/pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" - }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" - }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/push-receiver": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/push-receiver/-/push-receiver-2.1.1.tgz", - "integrity": "sha512-2f+Rglq6B+J6x06JEypDkm48vGf0lPCSjqO/+1F7Pg/8gippvZRSb/vloWuQlWGJw8ulma7lgPei34HAnJba5w==", - "dependencies": { - "http_ece": "^1.0.5", - "long": "^3.2.0", - "protobufjs": "^6.8.0", - "request": "^2.81.0", - "request-promise": "^4.2.1", - "uuid": "^3.1.0" - } - }, - "node_modules/push-receiver/node_modules/long": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", - "integrity": "sha512-ZYvPPOMqUwPoDsbJaR10iQJYnMuZhRTvHYl62ErLIEX7RgFlziSBUUvrt3OVfc47QlHHpzPZYP17g3Fv7oeJkg==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/push-receiver/node_modules/protobufjs": { - "version": "6.11.4", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.4.tgz", - "integrity": "sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==", - "hasInstallScript": true, - "dependencies": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/long": "^4.0.1", - "@types/node": ">=13.7.0", - "long": "^4.0.0" - }, - "bin": { - "pbjs": "bin/pbjs", - "pbts": "bin/pbts" - } - }, - "node_modules/push-receiver/node_modules/protobufjs/node_modules/long": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", - "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" - }, - "node_modules/push-receiver/node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readable-web-to-node-stream": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", - "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", - "dependencies": { - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/reduce-flatten": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", - "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==", - "engines": { - "node": ">=6" - } - }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", - "dependencies": { - "regenerate": "^1.4.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - }, - "node_modules/regenerator-transform": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", - "dependencies": { - "@babel/runtime": "^7.8.4" - } - }, - "node_modules/regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", - "dependencies": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "dependencies": { - "jsesc": "~0.5.0" - }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "bin": { - "jsesc": "bin/jsesc" - } - }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/request-promise": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/request-promise/-/request-promise-4.2.6.tgz", - "integrity": "sha512-HCHI3DJJUakkOr8fNoCc73E5nU5bqITjOYFMDrKHYOXWXrgD/SBaC7LjwuPymUprRyuF06UK7hd/lMHkmUXglQ==", - "deprecated": "request-promise has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", - "dependencies": { - "bluebird": "^3.5.0", - "request-promise-core": "1.1.4", - "stealthy-require": "^1.1.1", - "tough-cookie": "^2.3.3" - }, - "engines": { - "node": ">=0.10.0" - }, - "peerDependencies": { - "request": "^2.34" - } - }, - "node_modules/request-promise-core": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", - "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", - "dependencies": { - "lodash": "^4.17.19" - }, - "engines": { - "node": ">=0.10.0" - }, - "peerDependencies": { - "request": "^2.34" - } - }, - "node_modules/request/node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "node_modules/request/node_modules/qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/request/node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", - "dependencies": { - "is-core-module": "^2.11.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-stable-stringify": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", - "engines": { - "node": ">=10" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", - "dependencies": { - "is-arrayish": "^0.3.1" - } - }, - "node_modules/sshpk": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", - "engines": { - "node": "*" - } - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/stealthy-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/strtok3": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-7.0.0.tgz", - "integrity": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==", - "dependencies": { - "@tokenizer/token": "^0.3.0", - "peek-readable": "^5.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/table-layout": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz", - "integrity": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==", - "dependencies": { - "array-back": "^4.0.1", - "deep-extend": "~0.6.0", - "typical": "^5.2.0", - "wordwrapjs": "^4.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/table-layout/node_modules/array-back": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/table-layout/node_modules/typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/text-hex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", - "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" - }, - "node_modules/timm": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/timm/-/timm-1.7.1.tgz", - "integrity": "sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==" - }, - "node_modules/tinycolor2": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", - "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/token-types": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/token-types/-/token-types-5.0.1.tgz", - "integrity": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==", - "dependencies": { - "@tokenizer/token": "^0.3.0", - "ieee754": "^1.2.1" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "node_modules/translate": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/translate/-/translate-1.4.1.tgz", - "integrity": "sha512-kQVCT+Xf2Yu6tb2a3711Fm6p0Xh8BeEsy5pO6xPsRo2DwRMuKnjtWHR58gl8YiuuvVSMI78fTXbAfComWV8hFw==", - "dependencies": { - "@babel/preset-env": "^7.15.6", - "node-fetch": "^2.6.0" - }, - "funding": { - "url": "https://www.paypal.me/franciscopresencia/19" - } - }, - "node_modules/triple-beam": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", - "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" - }, - "node_modules/ts-mixer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/ts-mixer/-/ts-mixer-6.0.3.tgz", - "integrity": "sha512-k43M7uCG1AkTyxgnmI5MPwKoUvS/bRvLvUb7+Pgpdlmok8AoqmUaZxUUw8zKM5B1lqZrt41GjYgnvAi0fppqgQ==" - }, - "node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" - }, - "peerDependencies": { - "@swc/core": ">=1.2.50", - "@swc/wasm": ">=1.2.50", - "@types/node": "*", - "typescript": ">=2.7" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "@swc/wasm": { - "optional": true - } - } - }, - "node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" - }, - "node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/typical": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", - "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/undici": { - "version": "5.21.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.21.0.tgz", - "integrity": "sha512-HOjK8l6a57b2ZGXOcUsI5NLfoTrfmbOl90ixJDl0AEFG4wgHNDQxtZy15/ZQp7HhjkpaGlp/eneMgtsu1dIlUA==", - "dependencies": { - "busboy": "^1.6.0" - }, - "engines": { - "node": ">=12.18" - } - }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", - "engines": { - "node": ">=4" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/urlsafe-base64": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/urlsafe-base64/-/urlsafe-base64-1.0.0.tgz", - "integrity": "sha512-RtuPeMy7c1UrHwproMZN9gN6kiZ0SvJwRaEzwZY0j9MypEkFqyBaKv176jvlPtg58Zh36bOkS0NFABXMHvvGCA==" - }, - "node_modules/utif2": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/utif2/-/utif2-4.1.0.tgz", - "integrity": "sha512-+oknB9FHrJ7oW7A2WZYajOcv4FcDR4CfoGB0dPNfxbi4GO05RRnFmt5oa23+9w32EanrYcSJWspUiJkLMs+37w==", - "dependencies": { - "pako": "^1.0.11" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", - "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "node_modules/whatwg-fetch": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", - "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/winston": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.8.2.tgz", - "integrity": "sha512-MsE1gRx1m5jdTTO9Ld/vND4krP2To+lgDoMEHGGa4HIlAUyXJtfc7CxQcGXVyz2IBpw5hbFkj2b/AtUdQwyRew==", - "dependencies": { - "@colors/colors": "1.5.0", - "@dabh/diagnostics": "^2.0.2", - "async": "^3.2.3", - "is-stream": "^2.0.0", - "logform": "^2.4.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "safe-stable-stringify": "^2.3.1", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.5.0" - }, - "engines": { - "node": ">= 12.0.0" - } - }, - "node_modules/winston-transport": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.5.0.tgz", - "integrity": "sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q==", - "dependencies": { - "logform": "^2.3.2", - "readable-stream": "^3.6.0", - "triple-beam": "^1.3.0" - }, - "engines": { - "node": ">= 6.4.0" - } - }, - "node_modules/wordwrapjs": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz", - "integrity": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==", - "dependencies": { - "reduce-flatten": "^2.0.0", - "typical": "^5.2.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/wordwrapjs/node_modules/typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/ws": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.15.0.tgz", - "integrity": "sha512-H/Z3H55mrcrgjFwI+5jKavgXvwQLtfPCUEp6pi35VhoB0pfcHnSoyuTzkBEZpzq49g1193CUEwIvmsjcotenYw==", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xhr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", - "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", - "dependencies": { - "global": "~4.4.0", - "is-function": "^1.0.1", - "parse-headers": "^2.0.0", - "xtend": "^4.0.0" - } - }, - "node_modules/xml-parse-from-string": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz", - "integrity": "sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==" - }, - "node_modules/xml2js": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", - "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", - "dependencies": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/xmlbuilder": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", - "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" - }, - "node_modules/yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "engines": { - "node": ">=6" - } - } - }, - "dependencies": { - "@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "peer": true, - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@babel/code-frame": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", - "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", - "requires": { - "@babel/highlight": "^7.22.5" - } - }, - "@babel/compat-data": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.6.tgz", - "integrity": "sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg==" - }, - "@babel/core": { - "version": "7.22.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.8.tgz", - "integrity": "sha512-75+KxFB4CZqYRXjx4NlR4J7yGvKumBuZTmV4NV6v09dVXXkuYVYLT68N6HCzLvfJ+fWCxQsntNzKwwIXL4bHnw==", - "peer": true, - "requires": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.7", - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helpers": "^7.22.6", - "@babel/parser": "^7.22.7", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.8", - "@babel/types": "^7.22.5", - "@nicolo-ribaudo/semver-v6": "^6.3.3", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2" - }, - "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "peer": true, - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "peer": true - } - } - }, - "@babel/generator": { - "version": "7.22.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.7.tgz", - "integrity": "sha512-p+jPjMG+SI8yvIaxGgeW24u7q9+5+TGpZh8/CuB7RhBKd7RCy8FayNEFNNKrNK/eUcY/4ExQqLmyrvBXKsIcwQ==", - "requires": { - "@babel/types": "^7.22.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz", - "integrity": "sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==", - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-compilation-targets": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.6.tgz", - "integrity": "sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA==", - "requires": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-validator-option": "^7.22.5", - "@nicolo-ribaudo/semver-v6": "^6.3.3", - "browserslist": "^4.21.9", - "lru-cache": "^5.1.1" - }, - "dependencies": { - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "requires": { - "yallist": "^3.0.2" - } - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.6.tgz", - "integrity": "sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@nicolo-ribaudo/semver-v6": "^6.3.3" - } - }, - "@babel/helper-create-regexp-features-plugin": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.6.tgz", - "integrity": "sha512-nBookhLKxAWo/TUCmhnaEJyLz2dekjQvv5SRpE9epWQBcpedWLKt8aZdsuT9XV5ovzR3fENLjRXVT0GsSlGGhA==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@nicolo-ribaudo/semver-v6": "^6.3.3", - "regexpu-core": "^5.3.1" - } - }, - "@babel/helper-define-polyfill-provider": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.1.tgz", - "integrity": "sha512-kX4oXixDxG197yhX+J3Wp+NpL2wuCFjWQAr6yX2jtCnflK9ulMI51ULFGIrWiX1jGfvAxdHp+XQCcP2bZGPs9A==", - "requires": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" - }, - "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } - } - }, - "@babel/helper-environment-visitor": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", - "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==" - }, - "@babel/helper-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", - "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", - "requires": { - "@babel/template": "^7.22.5", - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", - "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-module-imports": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", - "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-module-transforms": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz", - "integrity": "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==", - "requires": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" - }, - "@babel/helper-remap-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz", - "integrity": "sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-wrap-function": "^7.22.5", - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-replace-supers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz", - "integrity": "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==", - "requires": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", - "requires": { - "@babel/types": "^7.22.5" - } - }, - "@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==" - }, - "@babel/helper-validator-identifier": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", - "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==" - }, - "@babel/helper-validator-option": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", - "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==" - }, - "@babel/helper-wrap-function": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz", - "integrity": "sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==", - "requires": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5" - } - }, - "@babel/helpers": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.6.tgz", - "integrity": "sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==", - "peer": true, - "requires": { - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.6", - "@babel/types": "^7.22.5" - } - }, - "@babel/highlight": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", - "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", - "requires": { - "@babel/helper-validator-identifier": "^7.22.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.22.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.7.tgz", - "integrity": "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==" - }, - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz", - "integrity": "sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz", - "integrity": "sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.5" - } - }, - "@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.0-placeholder-for-preset-env.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", - "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", - "requires": {} - }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-syntax-import-assertions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", - "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-syntax-import-attributes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz", - "integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-unicode-sets-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", - "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", - "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-async-generator-functions": { - "version": "7.22.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.7.tgz", - "integrity": "sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==", - "requires": { - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.5", - "@babel/plugin-syntax-async-generators": "^7.8.4" - } - }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", - "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", - "requires": { - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.5" - } - }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", - "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-block-scoping": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz", - "integrity": "sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-class-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz", - "integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-class-static-block": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz", - "integrity": "sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - } - }, - "@babel/plugin-transform-classes": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz", - "integrity": "sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "globals": "^11.1.0" - } - }, - "@babel/plugin-transform-computed-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", - "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.5" - } - }, - "@babel/plugin-transform-destructuring": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz", - "integrity": "sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", - "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", - "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-dynamic-import": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz", - "integrity": "sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - } - }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", - "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-export-namespace-from": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz", - "integrity": "sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - } - }, - "@babel/plugin-transform-for-of": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz", - "integrity": "sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", - "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", - "requires": { - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-json-strings": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz", - "integrity": "sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-json-strings": "^7.8.3" - } - }, - "@babel/plugin-transform-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", - "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-logical-assignment-operators": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz", - "integrity": "sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - } - }, - "@babel/plugin-transform-member-expression-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", - "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-amd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz", - "integrity": "sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==", - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", - "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz", - "integrity": "sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==", - "requires": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5" - } - }, - "@babel/plugin-transform-modules-umd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", - "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", - "requires": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-new-target": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", - "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz", - "integrity": "sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - } - }, - "@babel/plugin-transform-numeric-separator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz", - "integrity": "sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - } - }, - "@babel/plugin-transform-object-rest-spread": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz", - "integrity": "sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==", - "requires": { - "@babel/compat-data": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.22.5" - } - }, - "@babel/plugin-transform-object-super": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", - "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5" - } - }, - "@babel/plugin-transform-optional-catch-binding": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz", - "integrity": "sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - } - }, - "@babel/plugin-transform-optional-chaining": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.6.tgz", - "integrity": "sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - } - }, - "@babel/plugin-transform-parameters": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz", - "integrity": "sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-private-methods": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz", - "integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-private-property-in-object": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz", - "integrity": "sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - } - }, - "@babel/plugin-transform-property-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", - "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-regenerator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz", - "integrity": "sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "regenerator-transform": "^0.15.1" - } - }, - "@babel/plugin-transform-reserved-words": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", - "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", - "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-spread": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", - "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - } - }, - "@babel/plugin-transform-sticky-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", - "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-template-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", - "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", - "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-unicode-escapes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz", - "integrity": "sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==", - "requires": { - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-unicode-property-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz", - "integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", - "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/plugin-transform-unicode-sets-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz", - "integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - } - }, - "@babel/preset-env": { - "version": "7.22.7", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.7.tgz", - "integrity": "sha512-1whfDtW+CzhETuzYXfcgZAh8/GFMeEbz0V5dVgya8YeJyCU6Y/P2Gnx4Qb3MylK68Zu9UiwUvbPMPTpFAOJ+sQ==", - "requires": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", - "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.22.5", - "@babel/plugin-syntax-import-attributes": "^7.22.5", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.22.5", - "@babel/plugin-transform-async-generator-functions": "^7.22.7", - "@babel/plugin-transform-async-to-generator": "^7.22.5", - "@babel/plugin-transform-block-scoped-functions": "^7.22.5", - "@babel/plugin-transform-block-scoping": "^7.22.5", - "@babel/plugin-transform-class-properties": "^7.22.5", - "@babel/plugin-transform-class-static-block": "^7.22.5", - "@babel/plugin-transform-classes": "^7.22.6", - "@babel/plugin-transform-computed-properties": "^7.22.5", - "@babel/plugin-transform-destructuring": "^7.22.5", - "@babel/plugin-transform-dotall-regex": "^7.22.5", - "@babel/plugin-transform-duplicate-keys": "^7.22.5", - "@babel/plugin-transform-dynamic-import": "^7.22.5", - "@babel/plugin-transform-exponentiation-operator": "^7.22.5", - "@babel/plugin-transform-export-namespace-from": "^7.22.5", - "@babel/plugin-transform-for-of": "^7.22.5", - "@babel/plugin-transform-function-name": "^7.22.5", - "@babel/plugin-transform-json-strings": "^7.22.5", - "@babel/plugin-transform-literals": "^7.22.5", - "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", - "@babel/plugin-transform-member-expression-literals": "^7.22.5", - "@babel/plugin-transform-modules-amd": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.22.5", - "@babel/plugin-transform-modules-systemjs": "^7.22.5", - "@babel/plugin-transform-modules-umd": "^7.22.5", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.22.5", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", - "@babel/plugin-transform-numeric-separator": "^7.22.5", - "@babel/plugin-transform-object-rest-spread": "^7.22.5", - "@babel/plugin-transform-object-super": "^7.22.5", - "@babel/plugin-transform-optional-catch-binding": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.6", - "@babel/plugin-transform-parameters": "^7.22.5", - "@babel/plugin-transform-private-methods": "^7.22.5", - "@babel/plugin-transform-private-property-in-object": "^7.22.5", - "@babel/plugin-transform-property-literals": "^7.22.5", - "@babel/plugin-transform-regenerator": "^7.22.5", - "@babel/plugin-transform-reserved-words": "^7.22.5", - "@babel/plugin-transform-shorthand-properties": "^7.22.5", - "@babel/plugin-transform-spread": "^7.22.5", - "@babel/plugin-transform-sticky-regex": "^7.22.5", - "@babel/plugin-transform-template-literals": "^7.22.5", - "@babel/plugin-transform-typeof-symbol": "^7.22.5", - "@babel/plugin-transform-unicode-escapes": "^7.22.5", - "@babel/plugin-transform-unicode-property-regex": "^7.22.5", - "@babel/plugin-transform-unicode-regex": "^7.22.5", - "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.22.5", - "@nicolo-ribaudo/semver-v6": "^6.3.3", - "babel-plugin-polyfill-corejs2": "^0.4.4", - "babel-plugin-polyfill-corejs3": "^0.8.2", - "babel-plugin-polyfill-regenerator": "^0.5.1", - "core-js-compat": "^3.31.0" - } - }, - "@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - } - }, - "@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" - }, - "@babel/runtime": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz", - "integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==", - "requires": { - "regenerator-runtime": "^0.13.11" - } - }, - "@babel/template": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", - "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" - } - }, - "@babel/traverse": { - "version": "7.22.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.8.tgz", - "integrity": "sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==", - "requires": { - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.7", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.22.7", - "@babel/types": "^7.22.5", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } - } - }, - "@babel/types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", - "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", - "requires": { - "@babel/helper-string-parser": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.5", - "to-fast-properties": "^2.0.0" - } - }, - "@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" - }, - "@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "requires": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "dependencies": { - "@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - } - } - }, - "@dabh/diagnostics": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", - "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", - "requires": { - "colorspace": "1.1.x", - "enabled": "2.0.x", - "kuler": "^2.0.0" - } - }, - "@derhuerst/http-basic": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/@derhuerst/http-basic/-/http-basic-8.2.4.tgz", - "integrity": "sha512-F9rL9k9Xjf5blCz8HsJRO4diy111cayL2vkY2XE4r4t3n0yPXVYy3KD3nJ1qbrSn9743UWSXH4IwuCa/HWlGFw==", - "requires": { - "caseless": "^0.12.0", - "concat-stream": "^2.0.0", - "http-response-object": "^3.0.1", - "parse-cache-control": "^1.0.1" - } - }, - "@discordjs/builders": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@discordjs/builders/-/builders-1.6.1.tgz", - "integrity": "sha512-CCcLwn/8ANhlAbhlE18fcaN0hfXTen53/JiwZs1t9oE/Cqa9maA8ZRarkCIsXF4J7J/MYnd0J6IsxeKsq+f6mw==", - "requires": { - "@discordjs/formatters": "^0.3.0", - "@discordjs/util": "^0.2.0", - "@sapphire/shapeshift": "^3.8.1", - "discord-api-types": "^0.37.37", - "fast-deep-equal": "^3.1.3", - "ts-mixer": "^6.0.3", - "tslib": "^2.5.0" - } - }, - "@discordjs/collection": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-1.5.0.tgz", - "integrity": "sha512-suyVndkEAAWrGxyw/CPGdtXoRRU6AUNkibtnbJevQzpelkJh3Q1gQqWDpqf5i39CnAn5+LrN0YS+cULeEjq2Yw==" - }, - "@discordjs/formatters": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@discordjs/formatters/-/formatters-0.3.0.tgz", - "integrity": "sha512-Fc4MomalbP8HMKEMor3qUiboAKDtR7PSBoPjwm7WYghVRwgJlj5WYvUsriLsxeKk8+Qq2oy+HJlGTUkGvX0YnA==", - "requires": { - "discord-api-types": "^0.37.37" - } - }, - "@discordjs/rest": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/@discordjs/rest/-/rest-1.7.0.tgz", - "integrity": "sha512-r2HzmznRIo8IDGYBWqQfkEaGN1LrFfWQd3dSyC4tOpMU8nuVvFUEw6V/lwnG44jyOq+vgyDny2fxeUDMt9I4aQ==", - "requires": { - "@discordjs/collection": "^1.5.0", - "@discordjs/util": "^0.2.0", - "@sapphire/async-queue": "^1.5.0", - "@sapphire/snowflake": "^3.4.0", - "discord-api-types": "^0.37.37", - "file-type": "^18.2.1", - "tslib": "^2.5.0", - "undici": "^5.21.0" - } - }, - "@discordjs/util": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@discordjs/util/-/util-0.2.0.tgz", - "integrity": "sha512-/8qNbebFzLWKOOg+UV+RB8itp4SmU5jw0tBUD3ifElW6rYNOj1Ku5JaSW7lLl/WgjjxF01l/1uQPCzkwr110vg==" - }, - "@discordjs/voice": { - "version": "0.16.1", - "resolved": "https://registry.npmjs.org/@discordjs/voice/-/voice-0.16.1.tgz", - "integrity": "sha512-uiWiW0Ta6K473yf8zs13RfKuPqm/xU4m4dAidMkIdwqgy1CztbbZBtPLfDkVSKzpW7s6m072C+uQcs4LwF3FhA==", - "requires": { - "@types/ws": "^8.5.9", - "discord-api-types": "0.37.61", - "prism-media": "^1.3.5", - "tslib": "^2.6.2", - "ws": "^8.14.2" - } - }, - "@formatjs/ecma402-abstract": { - "version": "1.14.3", - "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.14.3.tgz", - "integrity": "sha512-SlsbRC/RX+/zg4AApWIFNDdkLtFbkq3LNoZWXZCE/nHVKqoIJyaoQyge/I0Y38vLxowUn9KTtXgusLD91+orbg==", - "requires": { - "@formatjs/intl-localematcher": "0.2.32", - "tslib": "^2.4.0" - } - }, - "@formatjs/fast-memoize": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.0.1.tgz", - "integrity": "sha512-M2GgV+qJn5WJQAYewz7q2Cdl6fobQa69S1AzSM2y0P68ZDbK5cWrJIcPCO395Of1ksftGZoOt4LYCO/j9BKBSA==", - "requires": { - "tslib": "^2.4.0" - } - }, - "@formatjs/icu-messageformat-parser": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.3.0.tgz", - "integrity": "sha512-xqtlqYAbfJDF4b6e4O828LBNOWXrFcuYadqAbYORlDRwhyJ2bH+xpUBPldZbzRGUN2mxlZ4Ykhm7jvERtmI8NQ==", - "requires": { - "@formatjs/ecma402-abstract": "1.14.3", - "@formatjs/icu-skeleton-parser": "1.3.18", - "tslib": "^2.4.0" - } - }, - "@formatjs/icu-skeleton-parser": { - "version": "1.3.18", - "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.3.18.tgz", - "integrity": "sha512-ND1ZkZfmLPcHjAH1sVpkpQxA+QYfOX3py3SjKWMUVGDow18gZ0WPqz3F+pJLYQMpS2LnnQ5zYR2jPVYTbRwMpg==", - "requires": { - "@formatjs/ecma402-abstract": "1.14.3", - "tslib": "^2.4.0" - } - }, - "@formatjs/intl": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/@formatjs/intl/-/intl-2.6.9.tgz", - "integrity": "sha512-EtcMZ9O24YSASu/jGOaTQtArx7XROjlKiO4KmkxJ/3EyAQLCr5hrS+KKvNud0a7GIwBucOb3IFrZ7WiSm2A/Cw==", - "requires": { - "@formatjs/ecma402-abstract": "1.14.3", - "@formatjs/fast-memoize": "2.0.1", - "@formatjs/icu-messageformat-parser": "2.3.0", - "@formatjs/intl-displaynames": "6.2.6", - "@formatjs/intl-listformat": "7.1.9", - "intl-messageformat": "10.3.3", - "tslib": "^2.4.0" - } - }, - "@formatjs/intl-displaynames": { - "version": "6.2.6", - "resolved": "https://registry.npmjs.org/@formatjs/intl-displaynames/-/intl-displaynames-6.2.6.tgz", - "integrity": "sha512-scf5AQTk9EjpvPhboo5sizVOvidTdMOnajv9z+0cejvl7JNl9bl/aMrNBgC72UH+bP3l45usPUKAGskV6sNIrA==", - "requires": { - "@formatjs/ecma402-abstract": "1.14.3", - "@formatjs/intl-localematcher": "0.2.32", - "tslib": "^2.4.0" - } - }, - "@formatjs/intl-listformat": { - "version": "7.1.9", - "resolved": "https://registry.npmjs.org/@formatjs/intl-listformat/-/intl-listformat-7.1.9.tgz", - "integrity": "sha512-5YikxwRqRXTVWVujhswDOTCq6gs+m9IcNbNZLa6FLtyBStAjEsuE2vAU+lPsbz9ZTST57D5fodjIh2JXT6sMWQ==", - "requires": { - "@formatjs/ecma402-abstract": "1.14.3", - "@formatjs/intl-localematcher": "0.2.32", - "tslib": "^2.4.0" - } - }, - "@formatjs/intl-localematcher": { - "version": "0.2.32", - "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.2.32.tgz", - "integrity": "sha512-k/MEBstff4sttohyEpXxCmC3MqbUn9VvHGlZ8fauLzkbwXmVrEeyzS+4uhrvAk9DWU9/7otYWxyDox4nT/KVLQ==", - "requires": { - "tslib": "^2.4.0" - } - }, - "@jimp/bmp": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.22.8.tgz", - "integrity": "sha512-JEMKgM1AEvvWfn9ZCHn62nK+QCE3Pb/ZhPdL3NF0ZgKNww6pqOmo6KqXzqY18JLB7c0epuTp4GPDPDhOh/ou1g==", - "requires": { - "@jimp/utils": "^0.22.8", - "bmp-js": "^0.1.0" - } - }, - "@jimp/core": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/core/-/core-0.22.8.tgz", - "integrity": "sha512-vkN28aFikzQieA6bGxN+qe20pseCAemCyUI0YmRkJIArlb6OujtAwWAKyokv2lylV56bq8EQGIz+Y30OXUnRqg==", - "requires": { - "@jimp/utils": "^0.22.8", - "any-base": "^1.1.0", - "buffer": "^5.2.0", - "exif-parser": "^0.1.12", - "file-type": "^16.5.4", - "isomorphic-fetch": "^3.0.0", - "mkdirp": "^2.1.3", - "pixelmatch": "^4.0.2", - "tinycolor2": "^1.6.0" - }, - "dependencies": { - "file-type": { - "version": "16.5.4", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz", - "integrity": "sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==", - "requires": { - "readable-web-to-node-stream": "^3.0.0", - "strtok3": "^6.2.4", - "token-types": "^4.1.1" - } - }, - "peek-readable": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz", - "integrity": "sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==" - }, - "strtok3": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz", - "integrity": "sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==", - "requires": { - "@tokenizer/token": "^0.3.0", - "peek-readable": "^4.1.0" - } - }, - "token-types": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz", - "integrity": "sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==", - "requires": { - "@tokenizer/token": "^0.3.0", - "ieee754": "^1.2.1" - } - } - } - }, - "@jimp/custom": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/custom/-/custom-0.22.8.tgz", - "integrity": "sha512-u6lP9x/HNeGHB0Oojv4c2mhuDvn7G0ikzYbK4IKLsH4HzHxt62faMjBzQMcFhKJhR6UiiKE/jiHrhGvBT/fMkw==", - "requires": { - "@jimp/core": "^0.22.8" - } - }, - "@jimp/gif": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/gif/-/gif-0.22.8.tgz", - "integrity": "sha512-I0l6koS67IPU40RPxCJTD1NvePEd8vUIHTejx1ly0jrjGnumbqdarAlBUkDrKfPPc+Fnqp84hBbSN1w5hNPT6w==", - "requires": { - "@jimp/utils": "^0.22.8", - "gifwrap": "^0.9.2", - "omggif": "^1.0.9" - } - }, - "@jimp/jpeg": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.22.8.tgz", - "integrity": "sha512-hLXrQ7/0QiUhAVAF10dfGCSq3hvyqjKltlpu/87b3wqMDKe9KdvhX1AJHiUUrAbJv1fAcnOmQGTyXGuySa1D6A==", - "requires": { - "@jimp/utils": "^0.22.8", - "jpeg-js": "^0.4.4" - } - }, - "@jimp/plugin-blit": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-blit/-/plugin-blit-0.22.8.tgz", - "integrity": "sha512-rQ19txVCKIwo74HtgFodFt4//0ATPCJK+f24riqzb+nx+1JaOo1xRvpJqg4moirHwKR2fhwdDxmY7KX20kCeYA==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-blur": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-blur/-/plugin-blur-0.22.8.tgz", - "integrity": "sha512-GWbNK3YW6k2EKiGJdpAFEr0jezPBtiVxj2wG/lCPuWJz7KmzSSN99hQjIy73xQxoBCRdALfJlkhe3leFNRueSQ==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-circle": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-circle/-/plugin-circle-0.22.8.tgz", - "integrity": "sha512-qPCw8XFW8opT89ciFDuvs+eB3EB1mZIJWVajD2qAlprHiE7YGr34TkM7N5MNr3qZ1pJgkYdW6+HbBrJwBaonqw==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-color": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-color/-/plugin-color-0.22.8.tgz", - "integrity": "sha512-ogkbg6rpDVH/mMLgAQKg17z3oZE0VN7ZWxNoH12fUHchqKz1I57zpa65fxZe2I8T5Xz97HR3x+7V7oI8qQGdSA==", - "requires": { - "@jimp/utils": "^0.22.8", - "tinycolor2": "^1.6.0" - } - }, - "@jimp/plugin-contain": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-contain/-/plugin-contain-0.22.8.tgz", - "integrity": "sha512-oiaPLdJt9Dk+XEEhM/OU3lFemM51mA9NgMCAdburSCjDzKacJYBGFSHjTOhXzcxOie/ZDpOYN/UzFGKy8Dgl9A==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-cover": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-cover/-/plugin-cover-0.22.8.tgz", - "integrity": "sha512-mO68w1m/LhfuHU8LKHY05a4/hhWnY4t+T+8JCw9t+5yfzA4+LofBZZKtFtWgwf/QGe1y3X2rtUU/avAzDUKyyA==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-crop": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-crop/-/plugin-crop-0.22.8.tgz", - "integrity": "sha512-ns4oH0h0gezYsbuH8RThcMLY5uTLk/vnqOVjWCehMHEzxi0DHMWCmpcb6bC//vJ+XFNhtVGn1ALN7+ROmPrj+A==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-displace": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-displace/-/plugin-displace-0.22.8.tgz", - "integrity": "sha512-Cj8nHYgsdFynOIx3dbbiVwRuZn3xO+RVfwkTRy0JBye+K2AU8SQJS+hSFNMQFTZt5djivh6kh0TzvR/6LkOd1w==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-dither": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-dither/-/plugin-dither-0.22.8.tgz", - "integrity": "sha512-oE0Us/6bEgrgEg56plU3jSBzvB9iGhweKUHmxYMWnQbFCHP4mNCtPAs8+Fmq6c+m98ZgBgRcrJTnC7lphHkGyw==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-fisheye": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-fisheye/-/plugin-fisheye-0.22.8.tgz", - "integrity": "sha512-bWvYY/nfMcKclWEaRyAir+YsT6C5St823HUQAsewZowTrJmme+w4U2a6InsryTHUL01BBcV5BLH0aDHuV3StvA==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-flip": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-flip/-/plugin-flip-0.22.8.tgz", - "integrity": "sha512-0NFTNzjsdmOQkaIkNjZqO3/yU4SQb9nnWQXsLS1fFo+9QrIL5v8vVkXpk/rhiND6PyTj2mMTNjOa76GuZcC+iQ==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-gaussian": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-gaussian/-/plugin-gaussian-0.22.8.tgz", - "integrity": "sha512-E/f14aLzCS50QAM7K+InI9V61KVy/Zx52vy7Jjfo1h7qKhQHss3PYaydaH0N6qlXRNeXgh+4/32P9JfieLMcdw==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-invert": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-invert/-/plugin-invert-0.22.8.tgz", - "integrity": "sha512-UauP39FF2cwbA5VU+Tz9VlNa9rtULPSHZb0Huwcjqjm9/G/xVN69VJ8+RKiFC4zM1/kYAUp/6IRwPa6qdKJpSw==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-mask": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-mask/-/plugin-mask-0.22.8.tgz", - "integrity": "sha512-bhg5+3i8x1CmYj6cjvPBQZLwZEI3iK3gJWF25ZHF+12d3cqDuJngtr8oRQOQLlAgvKmrj9FXIiEPDczUI9cnWQ==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-normalize": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-normalize/-/plugin-normalize-0.22.8.tgz", - "integrity": "sha512-Yg5nreAR1JYuSObu3ExlgaLxVeW6VvjVL5qFwiPFxSNlG8JIwL1Ir3K3ChSnnvymyZvJMHb6YKTYNfXKw5Da6g==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-print": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-print/-/plugin-print-0.22.8.tgz", - "integrity": "sha512-86O5ejCDi543IYl0TykSmNWErzAjEYhiAxNQb2F7rFRT38WJYNVsvJ6QhxhDQHKxSmF5iwmqbk0jYk5Wp2Z1kw==", - "requires": { - "@jimp/utils": "^0.22.8", - "load-bmfont": "^1.4.1" - } - }, - "@jimp/plugin-resize": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.22.8.tgz", - "integrity": "sha512-kg8ArQRPqv/iU3DWNXCa8kcVIhoq64Ze0aGCAeFLKlAq/59f5pzAci6m6vV4L/uOVdYmUa9/kYwIFY6RWKpfzQ==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-rotate": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-rotate/-/plugin-rotate-0.22.8.tgz", - "integrity": "sha512-9a+VPZWMN/Cks76wf8LjM5RVA3ntP9+NAdsS1SZhhXel7U3Re/dWMouIEbo3QTt6K+igRo4txUCdZiw4ZucvkQ==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-scale": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-scale/-/plugin-scale-0.22.8.tgz", - "integrity": "sha512-dQS4pG6DX6endu8zUpvBBOEtGC+ljDDDNw0scSXY71TxyQdNo5Ro0apfsppjmuAr8rNotRkfyxbITKkXQDRUDQ==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-shadow": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-shadow/-/plugin-shadow-0.22.8.tgz", - "integrity": "sha512-HyAhr7OblTQh+BoKHQg4qbS9MweNlH77yfpBqUEyDtfyjI5r06+5chf1ZdLRIPEWv/BdCfdI/g81Wv69muCMwA==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugin-threshold": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugin-threshold/-/plugin-threshold-0.22.8.tgz", - "integrity": "sha512-ZmkfH0PtjvF1UcKsjw0H7V6r+LC0yKzEfg76Jhs2nIqIgsxsSOVfHwS7z0/1IWnyXxSw36m+NjCAotNHRILGmA==", - "requires": { - "@jimp/utils": "^0.22.8" - } - }, - "@jimp/plugins": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/plugins/-/plugins-0.22.8.tgz", - "integrity": "sha512-ieI2+kCpmIfjwVlT7B67ULCzxMizfj7LspJh9HnIZCDXQB9GBOZ9KImLYc75Krae0dP/3FR7FglLiSI7fkOHbw==", - "requires": { - "@jimp/plugin-blit": "^0.22.8", - "@jimp/plugin-blur": "^0.22.8", - "@jimp/plugin-circle": "^0.22.8", - "@jimp/plugin-color": "^0.22.8", - "@jimp/plugin-contain": "^0.22.8", - "@jimp/plugin-cover": "^0.22.8", - "@jimp/plugin-crop": "^0.22.8", - "@jimp/plugin-displace": "^0.22.8", - "@jimp/plugin-dither": "^0.22.8", - "@jimp/plugin-fisheye": "^0.22.8", - "@jimp/plugin-flip": "^0.22.8", - "@jimp/plugin-gaussian": "^0.22.8", - "@jimp/plugin-invert": "^0.22.8", - "@jimp/plugin-mask": "^0.22.8", - "@jimp/plugin-normalize": "^0.22.8", - "@jimp/plugin-print": "^0.22.8", - "@jimp/plugin-resize": "^0.22.8", - "@jimp/plugin-rotate": "^0.22.8", - "@jimp/plugin-scale": "^0.22.8", - "@jimp/plugin-shadow": "^0.22.8", - "@jimp/plugin-threshold": "^0.22.8", - "timm": "^1.6.1" - } - }, - "@jimp/png": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/png/-/png-0.22.8.tgz", - "integrity": "sha512-XOj11kcCr8zKg24QSwlRfH9k4hbV6rkMGUVxMS3puRzzB0FBSQy42NBYEfYf2XlY2QJSAByPl4AYerOtKb805w==", - "requires": { - "@jimp/utils": "^0.22.8", - "pngjs": "^6.0.0" - } - }, - "@jimp/tiff": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.22.8.tgz", - "integrity": "sha512-K0hYUVW5MLgwq3jiHVHa6LvP05J1rXOlRCC+5dMTUnAXVwi45+MKsqA/8lzzwhHYJ65CNhZwy6D3+ZNzM9SIBQ==", - "requires": { - "utif2": "^4.0.1" - } - }, - "@jimp/types": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/types/-/types-0.22.8.tgz", - "integrity": "sha512-9+xc+mzuYwu0i+6dsnhXiUgfcS+Ktqn5q2jczoKyyBT0cOKgsk+57EIeFLgpTfVGRKRR0y/UIdHByeCzGguF3A==", - "requires": { - "@jimp/bmp": "^0.22.8", - "@jimp/gif": "^0.22.8", - "@jimp/jpeg": "^0.22.8", - "@jimp/png": "^0.22.8", - "@jimp/tiff": "^0.22.8", - "timm": "^1.6.1" - } - }, - "@jimp/utils": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/@jimp/utils/-/utils-0.22.8.tgz", - "integrity": "sha512-AaqjfqDeLzSFzrbGRKHMXg/ntiWKvoG9tpVgWzgOx5/gPWj/IyGfztojLTTvY8HqZCr25z8z91u2lAQD2v46Jw==", - "requires": { - "regenerator-runtime": "^0.13.3" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" - }, - "@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", - "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - }, - "dependencies": { - "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - } - } - }, - "@liamcottle/rustplus.js": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@liamcottle/rustplus.js/-/rustplus.js-2.4.0.tgz", - "integrity": "sha512-Njiwy5bUCngylu5Mepsg8Q35eARofIYxT84uoF5uamhMxjePOLS8qohErPhNAY1EcoI1GY/k2ebyf8HYfHo7vQ==", - "requires": { - "axios": "^1.2.2", - "chrome-launcher": "^0.15.0", - "command-line-args": "^5.2.0", - "command-line-usage": "^6.1.1", - "express": "^4.17.1", - "jimp": "^0.22.7", - "protobufjs": "^7.1.2", - "push-receiver": "^2.1.0", - "uuid": "^9.0.0", - "ws": "^8.3.0" - } - }, - "@nicolo-ribaudo/semver-v6": { - "version": "6.3.3", - "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/semver-v6/-/semver-v6-6.3.3.tgz", - "integrity": "sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg==" - }, - "@protobufjs/aspromise": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", - "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==" - }, - "@protobufjs/base64": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", - "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" - }, - "@protobufjs/codegen": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", - "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" - }, - "@protobufjs/eventemitter": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", - "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==" - }, - "@protobufjs/fetch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", - "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", - "requires": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" - } - }, - "@protobufjs/float": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", - "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==" - }, - "@protobufjs/inquire": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", - "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==" - }, - "@protobufjs/path": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", - "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==" - }, - "@protobufjs/pool": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", - "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==" - }, - "@protobufjs/utf8": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", - "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==" - }, - "@sapphire/async-queue": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@sapphire/async-queue/-/async-queue-1.5.0.tgz", - "integrity": "sha512-JkLdIsP8fPAdh9ZZjrbHWR/+mZj0wvKS5ICibcLrRI1j84UmLMshx5n9QmL8b95d4onJ2xxiyugTgSAX7AalmA==" - }, - "@sapphire/shapeshift": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/@sapphire/shapeshift/-/shapeshift-3.8.2.tgz", - "integrity": "sha512-NXpnJAsxN3/h9TqQPntOeVWZrpIuucqXI3IWF6tj2fWCoRLCuVK5wx7Dtg7pRrtkYfsMUbDqgKoX26vrC5iYfA==", - "requires": { - "fast-deep-equal": "^3.1.3", - "lodash": "^4.17.21" - } - }, - "@sapphire/snowflake": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@sapphire/snowflake/-/snowflake-3.4.0.tgz", - "integrity": "sha512-zZxymtVO6zeXVMPds+6d7gv/OfnCc25M1Z+7ZLB0oPmeMTPeRWVPQSS16oDJy5ZsyCOLj7M6mbZml5gWXcVRNw==" - }, - "@tokenizer/token": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", - "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" - }, - "@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==" - }, - "@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" - }, - "@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" - }, - "@tsconfig/node16": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", - "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==" - }, - "@types/long": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz", - "integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==" - }, - "@types/node": { - "version": "18.15.11", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", - "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==" - }, - "@types/triple-beam": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.2.tgz", - "integrity": "sha512-txGIh+0eDFzKGC25zORnswy+br1Ha7hj5cMVwKIU7+s0U2AxxJru/jZSMU6OC9MJWP6+pc/hc6ZjyZShpsyY2g==" - }, - "@types/ws": { - "version": "8.5.10", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", - "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", - "requires": { - "@types/node": "*" - } - }, - "accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - } - }, - "acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==" - }, - "acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "requires": { - "debug": "4" - }, - "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "any-base": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz", - "integrity": "sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==" - }, - "arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" - }, - "array-back": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", - "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==" - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - }, - "array-parallel": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/array-parallel/-/array-parallel-0.1.3.tgz", - "integrity": "sha512-TDPTwSWW5E4oiFiKmz6RGJ/a80Y91GuLgUYuLd49+XBS75tYo8PNgaT2K/OxuQYqkoI852MDGBorg9OcUSTQ8w==" - }, - "array-series": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/array-series/-/array-series-0.1.5.tgz", - "integrity": "sha512-L0XlBwfx9QetHOsbLDrE/vh2t018w9462HM3iaFfxRiK83aJjAt/Ja3NMkOW7FICwWTlQBa3ZbL5FKhuQWkDrg==" - }, - "asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" - }, - "async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==" - }, - "aws4": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" - }, - "axios": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.3.5.tgz", - "integrity": "sha512-glL/PvG/E+xCWwV8S6nCHcrfg1exGx7vxyUIivIA1iL7BIh6bePylCfVHwp6k13ao7SATxB6imau2kqY+I67kw==", - "requires": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "babel-plugin-polyfill-corejs2": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.4.tgz", - "integrity": "sha512-9WeK9snM1BfxB38goUEv2FLnA6ja07UMfazFHzCXUb3NyDZAwfXvQiURQ6guTTMeHcOsdknULm1PDhs4uWtKyA==", - "requires": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.4.1", - "@nicolo-ribaudo/semver-v6": "^6.3.3" - } - }, - "babel-plugin-polyfill-corejs3": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.2.tgz", - "integrity": "sha512-Cid+Jv1BrY9ReW9lIfNlNpsI53N+FN7gE+f73zLAUbr9C52W4gKLWSByx47pfDJsEysojKArqOtOKZSVIIUTuQ==", - "requires": { - "@babel/helper-define-polyfill-provider": "^0.4.1", - "core-js-compat": "^3.31.0" - } - }, - "babel-plugin-polyfill-regenerator": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.1.tgz", - "integrity": "sha512-L8OyySuI6OSQ5hFy9O+7zFjyr4WhAfRjLIOkhQGYl+emwJkd/S4XXT1JpfrgR1jrQ1NcGiOh+yAdGlF8pnC3Jw==", - "requires": { - "@babel/helper-define-polyfill-provider": "^0.4.1" - } - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - }, - "bmp-js": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz", - "integrity": "sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==" - }, - "body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - } - }, - "browserslist": { - "version": "4.21.9", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", - "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", - "requires": { - "caniuse-lite": "^1.0.30001503", - "electron-to-chromium": "^1.4.431", - "node-releases": "^2.0.12", - "update-browserslist-db": "^1.0.11" - } - }, - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "buffer-equal": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", - "integrity": "sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==" - }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - }, - "busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "requires": { - "streamsearch": "^1.1.0" - } - }, - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "caniuse-lite": { - "version": "1.0.30001513", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001513.tgz", - "integrity": "sha512-pnjGJo7SOOjAGytZZ203Em95MRM8Cr6jhCXNF/FAXTpCTRTECnqQWLpiTRqrFtdYcth8hf4WECUpkezuYsMVww==" - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "dependencies": { - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - } - } - }, - "chrome-launcher": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.1.tgz", - "integrity": "sha512-UugC8u59/w2AyX5sHLZUHoxBAiSiunUhZa3zZwMH6zPVis0C3dDKiRWyUGIo14tTbZHGVviWxv3PQWZ7taZ4fg==", - "requires": { - "@types/node": "*", - "escape-string-regexp": "^4.0.0", - "is-wsl": "^2.2.0", - "lighthouse-logger": "^1.0.0" - } - }, - "color": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", - "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", - "requires": { - "color-convert": "^1.9.3", - "color-string": "^1.6.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", - "requires": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" - }, - "colorspace": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", - "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", - "requires": { - "color": "^3.1.3", - "text-hex": "1.0.x" - } - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "command-line-args": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz", - "integrity": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==", - "requires": { - "array-back": "^3.1.0", - "find-replace": "^3.0.0", - "lodash.camelcase": "^4.3.0", - "typical": "^4.0.0" - } - }, - "command-line-usage": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.3.tgz", - "integrity": "sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==", - "requires": { - "array-back": "^4.0.2", - "chalk": "^2.4.2", - "table-layout": "^1.0.2", - "typical": "^5.2.0" - }, - "dependencies": { - "array-back": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==" - }, - "typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==" - } - } - }, - "concat-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", - "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.0.2", - "typedarray": "^0.0.6" - } - }, - "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "requires": { - "safe-buffer": "5.2.1" - } - }, - "content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" - }, - "convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "peer": true - }, - "cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - }, - "core-js-compat": { - "version": "3.31.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.1.tgz", - "integrity": "sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA==", - "requires": { - "browserslist": "^4.21.9" - } - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" - }, - "create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" - }, - "cross-spawn": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.2.tgz", - "integrity": "sha512-yAXz/pA1tD8Gtg2S98Ekf/sewp3Lcp3YoFKJ4Hkp5h5yLWnKVTDU0kwjKJ8NDCYcfTLfyGkzTikst+jWypT1iA==", - "requires": { - "lru-cache": "^4.0.1", - "which": "^1.2.9" - } - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - }, - "diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" - }, - "discord-api-types": { - "version": "0.37.61", - "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.37.61.tgz", - "integrity": "sha512-o/dXNFfhBpYHpQFdT6FWzeO7pKc838QeeZ9d91CfVAtpr5XLK4B/zYxQbYgPdoMiTDvJfzcsLW5naXgmHGDNXw==" - }, - "discord.js": { - "version": "14.9.0", - "resolved": "https://registry.npmjs.org/discord.js/-/discord.js-14.9.0.tgz", - "integrity": "sha512-ygGms5xP4hG+QrrY9k7d/OYCzMltSMtdl/2Snzq/nLCiZo+Sna91Ulv9l0+B5Jd/Czcq37B7wJAnmja7GOa+bg==", - "requires": { - "@discordjs/builders": "^1.6.0", - "@discordjs/collection": "^1.5.0", - "@discordjs/formatters": "^0.3.0", - "@discordjs/rest": "^1.7.0", - "@discordjs/util": "^0.2.0", - "@sapphire/snowflake": "^3.4.0", - "@types/ws": "^8.5.4", - "discord-api-types": "^0.37.37", - "fast-deep-equal": "^3.1.3", - "lodash.snakecase": "^4.1.1", - "tslib": "^2.5.0", - "undici": "^5.21.0", - "ws": "^8.13.0" - } - }, - "dom-walk": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", - "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "electron-to-chromium": { - "version": "1.4.454", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.454.tgz", - "integrity": "sha512-pmf1rbAStw8UEQ0sr2cdJtWl48ZMuPD9Sto8HVQOq9vx9j2WgDEN6lYoaqFvqEHYOmGA9oRGn7LqWI9ta0YugQ==" - }, - "enabled": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", - "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" - }, - "env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" - }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - }, - "exif-parser": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz", - "integrity": "sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==" - }, - "express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==" - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "fecha": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", - "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" - }, - "ffmpeg-static": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ffmpeg-static/-/ffmpeg-static-5.2.0.tgz", - "integrity": "sha512-WrM7kLW+do9HLr+H6tk7LzQ7kPqbAgLjdzNE32+u3Ff11gXt9Kkkd2nusGFrlWMIe+XaA97t+I8JS7sZIrvRgA==", - "requires": { - "@derhuerst/http-basic": "^8.2.0", - "env-paths": "^2.2.0", - "https-proxy-agent": "^5.0.0", - "progress": "^2.0.3" - } - }, - "file-type": { - "version": "18.2.1", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-18.2.1.tgz", - "integrity": "sha512-Yw5MtnMv7vgD2/6Bjmmuegc8bQEVA9GmAyaR18bMYWKqsWDG9wgYZ1j4I6gNMF5Y5JBDcUcjRQqNQx7Y8uotcg==", - "requires": { - "readable-web-to-node-stream": "^3.0.2", - "strtok3": "^7.0.0", - "token-types": "^5.0.1" - } - }, - "finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - } - }, - "find-replace": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", - "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", - "requires": { - "array-back": "^3.0.1" - } - }, - "fn.name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", - "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" - }, - "follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" - }, - "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "peer": true - }, - "get-intrinsic": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", - "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - } - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "gifwrap": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/gifwrap/-/gifwrap-0.9.4.tgz", - "integrity": "sha512-MDMwbhASQuVeD4JKd1fKgNgCRL3fGqMM4WaqpNhWO0JiMOAjbQdumbs4BbBZEy9/M00EHEjKN3HieVhCUlwjeQ==", - "requires": { - "image-q": "^4.0.0", - "omggif": "^1.0.10" - } - }, - "global": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", - "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", - "requires": { - "min-document": "^2.19.0", - "process": "^0.11.10" - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - }, - "gm": { - "version": "1.25.0", - "resolved": "https://registry.npmjs.org/gm/-/gm-1.25.0.tgz", - "integrity": "sha512-4kKdWXTtgQ4biIo7hZA396HT062nDVVHPjQcurNZ3o/voYN+o5FUC5kOwuORbpExp3XbTJ3SU7iRipiIhQtovw==", - "requires": { - "array-parallel": "~0.1.3", - "array-series": "~0.1.5", - "cross-spawn": "^4.0.0", - "debug": "^3.1.0" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - } - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==" - }, - "har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - } - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" - }, - "http_ece": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/http_ece/-/http_ece-1.1.0.tgz", - "integrity": "sha512-bptAfCDdPJxOs5zYSe7Y3lpr772s1G346R4Td5LgRUeCwIGpCGDUTJxRrhTNcAXbx37spge0kWEIH7QAYWNTlA==", - "requires": { - "urlsafe-base64": "~1.0.0" - } - }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "http-response-object": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/http-response-object/-/http-response-object-3.0.2.tgz", - "integrity": "sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA==", - "requires": { - "@types/node": "^10.0.3" - }, - "dependencies": { - "@types/node": { - "version": "10.17.60", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", - "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==" - } - } - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "requires": { - "agent-base": "6", - "debug": "4" - }, - "dependencies": { - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } - } - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - }, - "image-q": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/image-q/-/image-q-4.0.0.tgz", - "integrity": "sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==", - "requires": { - "@types/node": "16.9.1" - }, - "dependencies": { - "@types/node": { - "version": "16.9.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.9.1.tgz", - "integrity": "sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==" - } - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "intl-messageformat": { - "version": "10.3.3", - "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-10.3.3.tgz", - "integrity": "sha512-un/f07/g2e/3Q8e1ghDKET+el22Bi49M7O/rHxd597R+oLpPOMykSv5s51cABVfu3FZW+fea4hrzf2MHu1W4hw==", - "requires": { - "@formatjs/ecma402-abstract": "1.14.3", - "@formatjs/fast-memoize": "2.0.1", - "@formatjs/icu-messageformat-parser": "2.3.0", - "tslib": "^2.4.0" - } - }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - }, - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - }, - "is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", - "requires": { - "has": "^1.0.3" - } - }, - "is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - }, - "is-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", - "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" - }, - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "requires": { - "is-docker": "^2.0.0" - } - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "isomorphic-fetch": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", - "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", - "requires": { - "node-fetch": "^2.6.1", - "whatwg-fetch": "^3.4.1" - } - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" - }, - "jimp": { - "version": "0.22.8", - "resolved": "https://registry.npmjs.org/jimp/-/jimp-0.22.8.tgz", - "integrity": "sha512-pBbrooJMX7795sDcxx1XpwNZC8B/ITyDV+JK2/1qNbQl/1UWqWeh5Dq7qQpMZl5jLdcFDv5IVTM+OhpafSqSFA==", - "requires": { - "@jimp/custom": "^0.22.8", - "@jimp/plugins": "^0.22.8", - "@jimp/types": "^0.22.8", - "regenerator-runtime": "^0.13.3" - } - }, - "jpeg-js": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", - "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - }, - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - }, - "json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "peer": true - }, - "jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - } - }, - "kuler": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", - "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" - }, - "libsodium": { - "version": "0.7.13", - "resolved": "https://registry.npmjs.org/libsodium/-/libsodium-0.7.13.tgz", - "integrity": "sha512-mK8ju0fnrKXXfleL53vtp9xiPq5hKM0zbDQtcxQIsSmxNgSxqCj6R7Hl9PkrNe2j29T4yoDaF7DJLK9/i5iWUw==" - }, - "libsodium-wrappers": { - "version": "0.7.13", - "resolved": "https://registry.npmjs.org/libsodium-wrappers/-/libsodium-wrappers-0.7.13.tgz", - "integrity": "sha512-kasvDsEi/r1fMzKouIDv7B8I6vNmknXwGiYodErGuESoFTohGSKZplFtVxZqHaoQ217AynyIFgnOVRitpHs0Qw==", - "requires": { - "libsodium": "^0.7.13" - } - }, - "lighthouse-logger": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.3.0.tgz", - "integrity": "sha512-BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA==", - "requires": { - "debug": "^2.6.9", - "marky": "^1.2.2" - } - }, - "load-bmfont": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", - "integrity": "sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA==", - "requires": { - "buffer-equal": "0.0.1", - "mime": "^1.3.4", - "parse-bmfont-ascii": "^1.0.3", - "parse-bmfont-binary": "^1.0.5", - "parse-bmfont-xml": "^1.1.4", - "phin": "^2.9.1", - "xhr": "^2.0.1", - "xtend": "^4.0.0" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" - }, - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - }, - "lodash.snakecase": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", - "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==" - }, - "logform": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/logform/-/logform-2.5.1.tgz", - "integrity": "sha512-9FyqAm9o9NKKfiAKfZoYo9bGXXuwMkxQiQttkT4YjjVtQVIQtK6LmVtlxmCaFswo6N4AfEkHqZTV0taDtPotNg==", - "requires": { - "@colors/colors": "1.5.0", - "@types/triple-beam": "^1.3.2", - "fecha": "^4.2.0", - "ms": "^2.1.1", - "safe-stable-stringify": "^2.3.1", - "triple-beam": "^1.3.0" - }, - "dependencies": { - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - } - }, - "long": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.1.tgz", - "integrity": "sha512-GKSNGeNAtw8IryjjkhZxuKB3JzlcLTwjtiQCHKvqQet81I93kXslhDQruGI/QsddO83mcDToBVy7GqGS/zYf/A==" - }, - "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" - }, - "marky": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz", - "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==" - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - }, - "mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "requires": { - "mime-db": "1.52.0" - } - }, - "min-document": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "integrity": "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==", - "requires": { - "dom-walk": "^0.1.0" - } - }, - "mkdirp": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-2.1.6.tgz", - "integrity": "sha512-+hEnITedc8LAtIP9u3HJDFIdcLV2vXP33sqLLIzkv1Db1zO/1OxbvYf0Y1OC/S/Qo5dxHXepofhmxL02PsKe+A==" - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - }, - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - }, - "node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" - }, - "object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" - }, - "omggif": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", - "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==" - }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "requires": { - "ee-first": "1.1.1" - } - }, - "one-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", - "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", - "requires": { - "fn.name": "1.x.x" - } - }, - "pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - }, - "parse-bmfont-ascii": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz", - "integrity": "sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==" - }, - "parse-bmfont-binary": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz", - "integrity": "sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==" - }, - "parse-bmfont-xml": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz", - "integrity": "sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==", - "requires": { - "xml-parse-from-string": "^1.0.0", - "xml2js": "^0.4.5" - } - }, - "parse-cache-control": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-cache-control/-/parse-cache-control-1.0.1.tgz", - "integrity": "sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==" - }, - "parse-headers": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.5.tgz", - "integrity": "sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==" - }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - }, - "peek-readable": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-5.0.0.tgz", - "integrity": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==" - }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" - }, - "phin": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz", - "integrity": "sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==" - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "pixelmatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz", - "integrity": "sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA==", - "requires": { - "pngjs": "^3.0.0" - }, - "dependencies": { - "pngjs": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", - "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==" - } - } - }, - "pngjs": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz", - "integrity": "sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg==" - }, - "prism-media": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/prism-media/-/prism-media-1.3.5.tgz", - "integrity": "sha512-IQdl0Q01m4LrkN1EGIE9lphov5Hy7WWlH6ulf5QdGePLlPas9p2mhgddTEHrlaXYjjFToM1/rWuwF37VF4taaA==", - "requires": {} - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==" - }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - }, - "protobufjs": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.4.tgz", - "integrity": "sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==", - "requires": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/node": ">=13.7.0", - "long": "^5.0.0" - } - }, - "proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "requires": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - } - }, - "proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" - }, - "psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" - }, - "punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" - }, - "push-receiver": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/push-receiver/-/push-receiver-2.1.1.tgz", - "integrity": "sha512-2f+Rglq6B+J6x06JEypDkm48vGf0lPCSjqO/+1F7Pg/8gippvZRSb/vloWuQlWGJw8ulma7lgPei34HAnJba5w==", - "requires": { - "http_ece": "^1.0.5", - "long": "^3.2.0", - "protobufjs": "^6.8.0", - "request": "^2.81.0", - "request-promise": "^4.2.1", - "uuid": "^3.1.0" - }, - "dependencies": { - "long": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", - "integrity": "sha512-ZYvPPOMqUwPoDsbJaR10iQJYnMuZhRTvHYl62ErLIEX7RgFlziSBUUvrt3OVfc47QlHHpzPZYP17g3Fv7oeJkg==" - }, - "protobufjs": { - "version": "6.11.4", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.4.tgz", - "integrity": "sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==", - "requires": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/long": "^4.0.1", - "@types/node": ">=13.7.0", - "long": "^4.0.0" - }, - "dependencies": { - "long": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", - "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" - } - } - }, - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" - } - } - }, - "qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "requires": { - "side-channel": "^1.0.4" - } - }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - }, - "raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - }, - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "readable-web-to-node-stream": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", - "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", - "requires": { - "readable-stream": "^3.6.0" - } - }, - "reduce-flatten": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", - "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==" - }, - "regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - }, - "regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", - "requires": { - "regenerate": "^1.4.2" - } - }, - "regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - }, - "regenerator-transform": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", - "requires": { - "@babel/runtime": "^7.8.4" - } - }, - "regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", - "requires": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - } - }, - "regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "requires": { - "jsesc": "~0.5.0" - }, - "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" - } - } - }, - "request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "dependencies": { - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" - }, - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" - } - } - }, - "request-promise": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/request-promise/-/request-promise-4.2.6.tgz", - "integrity": "sha512-HCHI3DJJUakkOr8fNoCc73E5nU5bqITjOYFMDrKHYOXWXrgD/SBaC7LjwuPymUprRyuF06UK7hd/lMHkmUXglQ==", - "requires": { - "bluebird": "^3.5.0", - "request-promise-core": "1.1.4", - "stealthy-require": "^1.1.1", - "tough-cookie": "^2.3.3" - } - }, - "request-promise-core": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", - "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", - "requires": { - "lodash": "^4.17.19" - } - }, - "resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", - "requires": { - "is-core-module": "^2.11.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - }, - "safe-stable-stringify": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==" - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - }, - "send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - } - }, - "serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - } - }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - }, - "side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - } - }, - "simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", - "requires": { - "is-arrayish": "^0.3.1" - } - }, - "sshpk": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - } - }, - "stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==" - }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" - }, - "stealthy-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==" - }, - "streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" - }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "requires": { - "safe-buffer": "~5.2.0" - } - }, - "strtok3": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-7.0.0.tgz", - "integrity": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==", - "requires": { - "@tokenizer/token": "^0.3.0", - "peek-readable": "^5.0.0" - } + "node-opus": { + "optional": true }, + "opusscript": { + "optional": true + } + } + }, + "node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "license": "MIT", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/acorn-walk": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@jimp/core/node_modules/file-type": { + "version": "16.5.4", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz", + "integrity": "sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==", + "license": "MIT", + "dependencies": { + "readable-web-to-node-stream": "^3.0.0", + "strtok3": "^6.2.4", + "token-types": "^4.1.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/file-type?sponsor=1" + } + }, + "node_modules/agent-base/node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@formatjs/fast-memoize": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.2.3.tgz", + "integrity": "sha512-3jeJ+HyOfu8osl3GNSL4vVHUuWFXR03Iz9jjgI7RwjG6ysu/Ymdr0JRCPHfF5yGbTE6JCrd63EpvX1/WybYRbA==", + "license": "MIT", + "dependencies": { + "tslib": "2" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz", + "integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@jimp/plugin-displace": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-displace/-/plugin-displace-0.22.12.tgz", + "integrity": "sha512-qpRM8JRicxfK6aPPqKZA6+GzBwUIitiHaZw0QrJ64Ygd3+AsTc7BXr+37k2x7QcyCvmKXY4haUrSIsBug4S3CA==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "license": "MIT" + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/lighthouse-logger": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", + "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.9", + "marky": "^1.2.2" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz", + "integrity": "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@formatjs/icu-messageformat-parser": { + "version": "2.9.4", + "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.9.4.tgz", + "integrity": "sha512-Tbvp5a9IWuxUcpWNIW6GlMQYEc4rwNHR259uUFoKWNN1jM9obf9Ul0e+7r7MvFOBNcN+13K7NuKCKqQiAn1QEg==", + "license": "MIT", + "dependencies": { + "@formatjs/ecma402-abstract": "2.2.4", + "@formatjs/icu-skeleton-parser": "1.8.8", + "tslib": "2" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", + "license": "BSD-3-Clause" + }, + "node_modules/long": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", + "integrity": "sha512-ZYvPPOMqUwPoDsbJaR10iQJYnMuZhRTvHYl62ErLIEX7RgFlziSBUUvrt3OVfc47QlHHpzPZYP17g3Fv7oeJkg==", + "license": "Apache-2.0", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/load-bmfont": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.2.tgz", + "integrity": "sha512-qElWkmjW9Oq1F9EI5Gt7aD9zcdHb9spJCW1L/dmPf7KzCCEJxq8nhHz5eCgI9aMf7vrG/wyaCqdsI+Iy9ZTlog==", + "license": "MIT", + "dependencies": { + "buffer-equal": "0.0.1", + "mime": "^1.3.4", + "parse-bmfont-ascii": "^1.0.3", + "parse-bmfont-binary": "^1.0.5", + "parse-bmfont-xml": "^1.1.4", + "phin": "^3.7.1", + "xhr": "^2.0.1", + "xtend": "^4.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz", + "integrity": "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz", + "integrity": "sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "license": "(AFL-2.1 OR BSD-3-Clause)" + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "license": "MIT" + }, + "node_modules/body-parser": { + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.13.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/parse-bmfont-binary": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz", + "integrity": "sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==", + "license": "MIT" + }, + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz", + "integrity": "sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.15.30", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.30.tgz", + "integrity": "sha512-6Q7lr06bEHdlfplU6YRbgG1SFBdlsfNC4/lX+SkhiTs0cpJkOElmWls8PxDFv4yY/xKb8Y6SO0OmSX4wgqTZbA==", + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/xhr": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", + "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", + "license": "MIT", + "dependencies": { + "global": "~4.4.0", + "is-function": "^1.0.1", + "parse-headers": "^2.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz", + "integrity": "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "license": "MIT" + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/phin": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/phin/-/phin-3.7.1.tgz", + "integrity": "sha512-GEazpTWwTZaEQ9RhL7Nyz0WwqilbqgLahDM3D0hxWwmVDI52nXEybHqiN6/elwpkJBhcuj+WbBu+QfT0uhPGfQ==", + "license": "MIT", + "dependencies": { + "centra": "^2.7.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-cache-control": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-cache-control/-/parse-cache-control-1.0.1.tgz", + "integrity": "sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==" + }, + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@jimp/plugin-invert": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-invert/-/plugin-invert-0.22.12.tgz", + "integrity": "sha512-N+6rwxdB+7OCR6PYijaA/iizXXodpxOGvT/smd/lxeXsZ/empHmFFFJ/FaXcYh19Tm04dGDaXcNF/dN5nm6+xQ==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/@babel/generator": { + "version": "7.27.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.5.tgz", + "integrity": "sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.27.5", + "@babel/types": "^7.27.3", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", + "license": "MIT" + }, + "node_modules/@babel/helpers": { + "version": "7.27.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.6.tgz", + "integrity": "sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.27.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT" + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz", + "integrity": "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/command-line-args": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz", + "integrity": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==", + "license": "MIT", + "dependencies": { + "array-back": "^3.1.0", + "find-replace": "^3.0.0", + "lodash.camelcase": "^4.3.0", + "typical": "^4.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz", + "integrity": "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@formatjs/ecma402-abstract": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-2.2.4.tgz", + "integrity": "sha512-lFyiQDVvSbQOpU+WFd//ILolGj4UgA/qXrKeZxdV14uKiAUiPAtX6XAn7WBCRi7Mx6I7EybM9E5yYn4BIpZWYg==", + "license": "MIT", + "dependencies": { + "@formatjs/fast-memoize": "2.2.3", + "@formatjs/intl-localematcher": "0.5.8", + "tslib": "2" + } + }, + "node_modules/@jimp/types": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/types/-/types-0.22.12.tgz", + "integrity": "sha512-wwKYzRdElE1MBXFREvCto5s699izFHNVvALUv79GXNbsOVqlwlOxlWJ8DuyOGIXoLP4JW/m30YyuTtfUJgMRMA==", + "license": "MIT", + "dependencies": { + "@jimp/bmp": "^0.22.12", + "@jimp/gif": "^0.22.12", + "@jimp/jpeg": "^0.22.12", + "@jimp/png": "^0.22.12", + "@jimp/tiff": "^0.22.12", + "timm": "^1.6.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/jpeg": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.22.12.tgz", + "integrity": "sha512-Rq26XC/uQWaQKyb/5lksCTCxXhtY01NJeBN+dQv5yNYedN0i7iYu+fXEoRsfaJ8xZzjoANH8sns7rVP4GE7d/Q==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "jpeg-js": "^0.4.4" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/@formatjs/intl-listformat": { + "version": "7.7.5", + "resolved": "https://registry.npmjs.org/@formatjs/intl-listformat/-/intl-listformat-7.7.5.tgz", + "integrity": "sha512-Wzes10SMNeYgnxYiKsda4rnHP3Q3II4XT2tZyOgnH5fWuHDtIkceuWlRQNsvrI3uiwP4hLqp2XdQTCsfkhXulg==", + "license": "MIT", + "dependencies": { + "@formatjs/ecma402-abstract": "2.2.4", + "@formatjs/intl-localematcher": "0.5.8", + "tslib": "2" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/array-parallel": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/array-parallel/-/array-parallel-0.1.3.tgz", + "integrity": "sha512-TDPTwSWW5E4oiFiKmz6RGJ/a80Y91GuLgUYuLd49+XBS75tYo8PNgaT2K/OxuQYqkoI852MDGBorg9OcUSTQ8w==", + "license": "MIT" + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "license": "MIT", + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", + "license": "MIT" + }, + "node_modules/discord-api-types": { + "version": "0.38.14", + "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.38.14.tgz", + "integrity": "sha512-5qknrPxvIzAiX2tDb7dB55A4ydb/nCKxhlO48RrMNeyEGsBgk/88qIAsUm7K7nDnNkkOgJYt/wufybEPYWRMJQ==", + "license": "MIT", + "workspaces": [ + "scripts/actions/documentation" + ] + }, + "node_modules/@jimp/plugin-mask": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-mask/-/plugin-mask-0.22.12.tgz", + "integrity": "sha512-4AWZg+DomtpUA099jRV8IEZUfn1wLv6+nem4NRJC7L/82vxzLCgXKTxvNvBcNmJjT9yS1LAAmiJGdWKXG63/NA==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/pixelmatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz", + "integrity": "sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA==", + "license": "ISC", + "dependencies": { + "pngjs": "^3.0.0" + }, + "bin": { + "pixelmatch": "bin/pixelmatch" + } + }, + "node_modules/colorspace": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", + "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", + "license": "MIT", + "dependencies": { + "color": "^3.1.3", + "text-hex": "1.0.x" + } + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz", + "integrity": "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", + "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", + "license": "MIT" + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz", + "integrity": "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/sshpk": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", + "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", + "license": "MIT", + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", + "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.27.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.27.5.tgz", + "integrity": "sha512-uhB8yHerfe3MWnuLAhEbeQ4afVoqv8BQsPqrTv7e/jZ9y00kJL6l9a/f4OWaKxotmjzewfEyXE1vgDJenkQ2/Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/image-q": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/image-q/-/image-q-4.0.0.tgz", + "integrity": "sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==", + "license": "MIT", + "dependencies": { + "@types/node": "16.9.1" + } + }, + "node_modules/@jimp/plugin-cover": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-cover/-/plugin-cover-0.22.12.tgz", + "integrity": "sha512-z0w/1xH/v/knZkpTNx+E8a7fnasQ2wHG5ze6y5oL2dhH1UufNua8gLQXlv8/W56+4nJ1brhSd233HBJCo01BXA==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-crop": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5", + "@jimp/plugin-scale": ">=0.3.5" + } + }, + "node_modules/@jimp/plugins": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugins/-/plugins-0.22.12.tgz", + "integrity": "sha512-yBJ8vQrDkBbTgQZLty9k4+KtUQdRjsIDJSPjuI21YdVeqZxYywifHl4/XWILoTZsjTUASQcGoH0TuC0N7xm3ww==", + "license": "MIT", + "dependencies": { + "timm": "^1.6.1", + "@jimp/plugin-mask": "^0.22.12", + "@jimp/plugin-dither": "^0.22.12", + "@jimp/plugin-print": "^0.22.12", + "@jimp/plugin-scale": "^0.22.12", + "@jimp/plugin-shadow": "^0.22.12", + "@jimp/plugin-invert": "^0.22.12", + "@jimp/plugin-crop": "^0.22.12", + "@jimp/plugin-threshold": "^0.22.12", + "@jimp/plugin-color": "^0.22.12", + "@jimp/plugin-fisheye": "^0.22.12", + "@jimp/plugin-blit": "^0.22.12", + "@jimp/plugin-circle": "^0.22.12", + "@jimp/plugin-contain": "^0.22.12", + "@jimp/plugin-blur": "^0.22.12", + "@jimp/plugin-gaussian": "^0.22.12", + "@jimp/plugin-cover": "^0.22.12", + "@jimp/plugin-normalize": "^0.22.12", + "@jimp/plugin-flip": "^0.22.12", + "@jimp/plugin-rotate": "^0.22.12", + "@jimp/plugin-resize": "^0.22.12", + "@jimp/plugin-displace": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/@jimp/plugin-fisheye": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-fisheye/-/plugin-fisheye-0.22.12.tgz", + "integrity": "sha512-LGuUTsFg+fOp6KBKrmLkX4LfyCy8IIsROwoUvsUPKzutSqMJnsm3JGDW2eOmWIS/jJpPaeaishjlxvczjgII+Q==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/parse-bmfont-ascii": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz", + "integrity": "sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==", + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "license": "MIT", + "peer": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/@jimp/plugin-shadow": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-shadow/-/plugin-shadow-0.22.12.tgz", + "integrity": "sha512-FX8mTJuCt7/3zXVoeD/qHlm4YH2bVqBuWQHXSuBK054e7wFRnRnbSLPUqAwSeYP3lWqpuQzJtgiiBxV3+WWwTg==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-blur": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "license": "MIT", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@jimp/custom": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/custom/-/custom-0.22.12.tgz", + "integrity": "sha512-xcmww1O/JFP2MrlGUMd3Q78S3Qu6W3mYTXYuIqFq33EorgYHV/HqymHfXy9GjiCJ7OI+7lWx6nYFOzU7M4rd1Q==", + "license": "MIT", + "dependencies": { + "@jimp/core": "^0.22.12" + } + }, + "node_modules/@babel/traverse": { + "version": "7.27.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.4.tgz", + "integrity": "sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.27.3", + "@babel/parser": "^7.27.4", + "@babel/template": "^7.27.2", + "@babel/types": "^7.27.3", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@jimp/plugin-gaussian": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-gaussian/-/plugin-gaussian-0.22.12.tgz", + "integrity": "sha512-sBfbzoOmJ6FczfG2PquiK84NtVGeScw97JsCC3rpQv1PHVWyW+uqWFF53+n3c8Y0P2HWlUjflEla2h/vWShvhg==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/triple-beam": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.4.1.tgz", + "integrity": "sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==", + "license": "MIT", + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==", + "license": "MIT" + }, + "node_modules/table-layout": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz", + "integrity": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==", + "license": "MIT", + "dependencies": { + "array-back": "^4.0.1", + "deep-extend": "~0.6.0", + "typical": "^5.2.0", + "wordwrapjs": "^4.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "license": "ISC" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.27.1.tgz", + "integrity": "sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "regexpu-core": "^6.2.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/utif2": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/utif2/-/utif2-4.1.0.tgz", + "integrity": "sha512-+oknB9FHrJ7oW7A2WZYajOcv4FcDR4CfoGB0dPNfxbi4GO05RRnFmt5oa23+9w32EanrYcSJWspUiJkLMs+37w==", + "license": "MIT", + "dependencies": { + "pako": "^1.0.11" + } + }, + "node_modules/centra": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/centra/-/centra-2.7.0.tgz", + "integrity": "sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6" + } + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", + "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.27.1.tgz", + "integrity": "sha512-eST9RrwlpaoJBDHShc+DS2SG4ATTi2MYNb4OxYkf3n+7eb49LWpnS+HSpVfW4x927qQwgk8A2hGNVaajAEw0EA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==", + "license": "ISC", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "license": "MIT" + }, + "node_modules/acorn": { + "version": "8.14.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", + "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.27.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.27.5.tgz", + "integrity": "sha512-JF6uE2s67f0y2RZcm2kpAUEbD50vH62TyWVebxwHAlbSdM49VqPz8t4a1uIjp4NIOIZ4xzLfjY5emt/RCyC7TQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz", + "integrity": "sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" + }, + "node_modules/jimp": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/jimp/-/jimp-0.22.12.tgz", + "integrity": "sha512-R5jZaYDnfkxKJy1dwLpj/7cvyjxiclxU3F4TrI/J4j2rS0niq6YDUMoPn5hs8GDpO+OZGo7Ky057CRtWesyhfg==", + "license": "MIT", + "dependencies": { + "@jimp/custom": "^0.22.12", + "@jimp/plugins": "^0.22.12", + "@jimp/types": "^0.22.12", + "regenerator-runtime": "^0.13.3" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/buffer-equal": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", + "integrity": "sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/sax": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", + "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", + "license": "ISC" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.27.1.tgz", + "integrity": "sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/http-response-object": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/http-response-object/-/http-response-object-3.0.2.tgz", + "integrity": "sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA==", + "license": "MIT", + "dependencies": { + "@types/node": "^10.0.3" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", + "license": "MIT", + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@formatjs/intl-localematcher": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.8.tgz", + "integrity": "sha512-I+WDNWWJFZie+jkfkiK5Mp4hEDyRSEvmyfYadflOno/mmKJKcB17fEpEH0oJu/OWhhCJ8kJBDz2YMd/6cDl7Mg==", + "license": "MIT", + "dependencies": { + "tslib": "2" + } + }, + "node_modules/array-series": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/array-series/-/array-series-0.1.5.tgz", + "integrity": "sha512-L0XlBwfx9QetHOsbLDrE/vh2t018w9462HM3iaFfxRiK83aJjAt/Ja3NMkOW7FICwWTlQBa3ZbL5FKhuQWkDrg==", + "license": "MIT" + }, + "node_modules/path-to-regexp": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", + "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", + "license": "MIT" + }, + "node_modules/isomorphic-fetch": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", + "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", + "license": "MIT", + "dependencies": { + "node-fetch": "^2.6.1", + "whatwg-fetch": "^3.4.1" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "license": "MIT", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz", + "integrity": "sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@jimp/core": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/core/-/core-0.22.12.tgz", + "integrity": "sha512-l0RR0dOPyzMKfjUW1uebzueFEDtCOj9fN6pyTYWWOM/VS4BciXQ1VVrJs8pO3kycGYZxncRKhCoygbNr8eEZQA==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "any-base": "^1.1.0", + "buffer": "^5.2.0", + "exif-parser": "^0.1.12", + "file-type": "^16.5.4", + "isomorphic-fetch": "^3.0.0", + "pixelmatch": "^4.0.2", + "tinycolor2": "^1.6.0" + } + }, + "node_modules/browserslist": { + "version": "4.25.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.0.tgz", + "integrity": "sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001718", + "electron-to-chromium": "^1.5.160", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/strtok3": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz", + "integrity": "sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==", + "license": "MIT", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "peek-readable": "^4.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "license": "MIT" + }, + "node_modules/@jimp/tiff": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.22.12.tgz", + "integrity": "sha512-E1LtMh4RyJsoCAfAkBRVSYyZDTtLq9p9LUiiYP0vPtXyxX4BiYBUYihTLSBlCQg5nF2e4OpQg7SPrLdJ66u7jg==", + "license": "MIT", + "dependencies": { + "utif2": "^4.0.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@liamcottle/rustplus.js/node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/undici": { + "version": "6.21.3", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.3.tgz", + "integrity": "sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==", + "license": "MIT", + "engines": { + "node": ">=18.17" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz", + "integrity": "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@jimp/utils": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/utils/-/utils-0.22.12.tgz", + "integrity": "sha512-yJ5cWUknGnilBq97ZXOyOS0HhsHOyAyjHwYfHxGbSyMTohgQI6sVyE8KPgDwH8HHW/nMKXk8TrSwAE71zt716Q==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.13.3" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz", + "integrity": "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz", + "integrity": "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.27.1.tgz", + "integrity": "sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "license": "MIT" + }, + "node_modules/@types/ws": { + "version": "8.18.1", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz", + "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@tokenizer/token": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", + "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==", + "license": "MIT" + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz", + "integrity": "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/readable-web-to-node-stream": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.4.tgz", + "integrity": "sha512-9nX56alTf5bwXQ3ZDipHJhusu9NTQJ/CVPtb/XHAJCXihZeitfJvIRS4GqQ/mfIoOE3IelHMrpayVrosdHBuLw==", + "license": "MIT", + "dependencies": { + "readable-stream": "^4.7.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@discordjs/ws/node_modules/@discordjs/collection": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-2.1.1.tgz", + "integrity": "sha512-LiSusze9Tc7qF03sLCujF5iZp7K+vRNEDBZ86FT9aQAv3vxMLihUvKvpsCWiQ2DJq1tVckopKm1rxomgNUc9hg==", + "license": "Apache-2.0", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/discordjs/discord.js?sponsor" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "license": "MIT" + }, + "node_modules/request-promise": { + "version": "4.2.6", + "resolved": "https://registry.npmjs.org/request-promise/-/request-promise-4.2.6.tgz", + "integrity": "sha512-HCHI3DJJUakkOr8fNoCc73E5nU5bqITjOYFMDrKHYOXWXrgD/SBaC7LjwuPymUprRyuF06UK7hd/lMHkmUXglQ==", + "deprecated": "request-promise has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", + "license": "ISC", + "dependencies": { + "bluebird": "^3.5.0", + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "node_modules/@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", + "license": "BSD-3-Clause" + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/marky": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/marky/-/marky-1.3.0.tgz", + "integrity": "sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==", + "license": "Apache-2.0" + }, + "node_modules/chalk/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "license": "MIT" + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz", + "integrity": "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/core-js-compat": { + "version": "3.42.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.42.0.tgz", + "integrity": "sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.24.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/pixelmatch/node_modules/pngjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", + "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/winston": { + "version": "3.17.0", + "resolved": "https://registry.npmjs.org/winston/-/winston-3.17.0.tgz", + "integrity": "sha512-DLiFIXYC5fMPxaRg832S6F5mJYvePtmO5G9v9IgUFPhXm9/GkXarH/TUrBAVzhTCzAj9anE/+GjrgXp/54nOgw==", + "license": "MIT", + "dependencies": { + "@colors/colors": "^1.6.0", + "@dabh/diagnostics": "^2.0.2", + "async": "^3.2.3", + "is-stream": "^2.0.0", + "logform": "^2.7.0", + "one-time": "^1.0.0", + "readable-stream": "^3.4.0", + "safe-stable-stringify": "^2.3.1", + "stack-trace": "0.0.x", + "triple-beam": "^1.3.0", + "winston-transport": "^4.9.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/request/node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "node_modules/@discordjs/collection": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-1.5.3.tgz", + "integrity": "sha512-SVb428OMd3WO1paV3rm6tSjM4wC+Kecaa1EUGX7vc6/fddvw/6lg90z4QtCqm21zvVe92vMMDt9+DkIvjXImQQ==", + "license": "Apache-2.0", + "engines": { + "node": ">=16.11.0" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", + "license": "MIT" + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz", + "integrity": "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.27.2.tgz", + "integrity": "sha512-Ma4zSuYSlGNRlCLO+EAzLnCmJK2vdstgv+n7aUP+/IKZrOfWHOJVdSJtuub8RzHTj3ahD37k5OKJWvzf16TQyQ==", + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-import-attributes": "^7.27.1", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.27.1", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-async-generator-functions": "^7.27.1", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1", + "@babel/plugin-transform-spread": "^7.27.1", + "semver": "^6.3.1", + "@babel/plugin-transform-parameters": "^7.27.1", + "@babel/plugin-transform-object-super": "^7.27.1", + "@babel/plugin-transform-unicode-regex": "^7.27.1", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-dotall-regex": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.27.1", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.27.1", + "@babel/plugin-transform-dynamic-import": "^7.27.1", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-transform-logical-assignment-operators": "^7.27.1", + "@babel/plugin-transform-unicode-escapes": "^7.27.1", + "@babel/plugin-transform-computed-properties": "^7.27.1", + "@babel/plugin-transform-block-scoped-functions": "^7.27.1", + "@babel/plugin-transform-new-target": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1", + "@babel/plugin-transform-class-properties": "^7.27.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1", + "@babel/plugin-transform-private-methods": "^7.27.1", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "@babel/plugin-transform-property-literals": "^7.27.1", + "@babel/plugin-syntax-import-assertions": "^7.27.1", + "@babel/plugin-transform-class-static-block": "^7.27.1", + "babel-plugin-polyfill-corejs3": "^0.11.0", + "@babel/plugin-transform-private-property-in-object": "^7.27.1", + "@babel/plugin-transform-template-literals": "^7.27.1", + "@babel/plugin-transform-object-rest-spread": "^7.27.2", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.27.1", + "@babel/plugin-transform-sticky-regex": "^7.27.1", + "@babel/plugin-transform-block-scoping": "^7.27.1", + "@babel/plugin-transform-numeric-separator": "^7.27.1", + "@babel/plugin-transform-shorthand-properties": "^7.27.1", + "@babel/plugin-transform-exponentiation-operator": "^7.27.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.27.1", + "core-js-compat": "^3.40.0", + "@babel/compat-data": "^7.27.2", + "@babel/plugin-transform-json-strings": "^7.27.1", + "@babel/plugin-transform-regexp-modifiers": "^7.27.1", + "@babel/plugin-transform-classes": "^7.27.1", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1", + "@babel/plugin-transform-member-expression-literals": "^7.27.1", + "@babel/plugin-transform-arrow-functions": "^7.27.1", + "@babel/plugin-transform-function-name": "^7.27.1", + "@babel/plugin-transform-duplicate-keys": "^7.27.1", + "@babel/plugin-transform-regenerator": "^7.27.1", + "@babel/plugin-transform-literals": "^7.27.1", + "@babel/plugin-transform-modules-systemjs": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-transform-optional-catch-binding": "^7.27.1", + "@babel/plugin-transform-modules-umd": "^7.27.1", + "@babel/plugin-transform-export-namespace-from": "^7.27.1", + "@babel/plugin-transform-typeof-symbol": "^7.27.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.27.1", + "@babel/plugin-transform-async-to-generator": "^7.27.1", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-transform-unicode-property-regex": "^7.27.1", + "@babel/plugin-transform-for-of": "^7.27.1", + "@babel/plugin-transform-modules-amd": "^7.27.1", + "@babel/plugin-transform-reserved-words": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/xml-parse-from-string": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz", + "integrity": "sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==", + "license": "MIT" + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.27.1.tgz", + "integrity": "sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" + }, + "node_modules/@jimp/bmp": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.22.12.tgz", + "integrity": "sha512-aeI64HD0npropd+AR76MCcvvRaa+Qck6loCOS03CkkxGHN5/r336qTM5HPUdHKMDOGzqknuVPA8+kK1t03z12g==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "bmp-js": "^0.1.0" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/lodash.snakecase": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", + "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==", + "license": "MIT" + }, + "node_modules/@babel/traverse/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/@sapphire/async-queue": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@sapphire/async-queue/-/async-queue-1.5.5.tgz", + "integrity": "sha512-cvGzxbba6sav2zZkH8GPf2oGk9yYoD5qrNWdu9fRehifgnFZJMV+nuy2nON2roRO4yQQ+v7MK/Pktl/HgfsUXg==", + "license": "MIT", + "engines": { + "node": ">=v14.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "license": "MIT" + }, + "node_modules/bmp-js": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz", + "integrity": "sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==", + "license": "MIT" + }, + "node_modules/parse-bmfont-xml": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.6.tgz", + "integrity": "sha512-0cEliVMZEhrFDwMh4SxIyVJpqYoOWDJ9P895tFuS+XuNzI5UBmBk5U5O4KuJdTnZpSBI4LFA2+ZiJaiwfSwlMA==", + "license": "MIT", + "dependencies": { + "xml-parse-from-string": "^1.0.0", + "xml2js": "^0.5.0" + } + }, + "node_modules/winston-transport": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.9.0.tgz", + "integrity": "sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==", + "license": "MIT", + "dependencies": { + "logform": "^2.7.0", + "readable-stream": "^3.6.2", + "triple-beam": "^1.3.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.27.1.tgz", + "integrity": "sha512-7iLhfFAubmpeJe/Wo2TVuDrykh/zlWXLzPNdL0Jqn/Xu8R3QQ8h9ff8FQoISZOsw74/HFqFI7NX63HN7QFIHKA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-compilation-targets": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/traverse": "^7.27.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@jimp/plugin-scale": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-scale/-/plugin-scale-0.22.12.tgz", + "integrity": "sha512-dghs92qM6MhHj0HrV2qAwKPMklQtjNpoYgAB94ysYpsXslhRTiPisueSIELRwZGEr0J0VUxpUY7HgJwlSIgGZw==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "license": "MIT" + }, + "node_modules/request/node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/@liamcottle/push-receiver/node_modules/protobufjs/node_modules/long": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", + "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", + "license": "Apache-2.0" + }, + "node_modules/express": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", + "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", + "license": "MIT", + "dependencies": { + "type-is": "~1.6.18", + "safe-buffer": "5.2.1", + "finalhandler": "1.3.1", + "fresh": "0.5.2", + "body-parser": "1.20.3", + "content-type": "~1.0.4", + "send": "0.19.0", + "cookie": "0.7.1", + "methods": "~1.1.2", + "proxy-addr": "~2.0.7", + "accepts": "~1.3.8", + "range-parser": "~1.2.1", + "on-finished": "2.4.1", + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "etag": "~1.8.1", + "path-to-regexp": "0.1.12", + "statuses": "2.0.1", + "parseurl": "~1.3.3", + "setprototypeof": "1.2.0", + "merge-descriptors": "1.0.3", + "vary": "~1.1.2", + "serve-static": "1.16.2", + "content-disposition": "0.5.4", + "escape-html": "~1.0.3", + "http-errors": "2.0.0", + "cookie-signature": "1.0.6", + "utils-merge": "1.0.1", + "array-flatten": "1.1.1", + "depd": "2.0.0", + "qs": "6.13.0" + }, + "engines": { + "node": ">= 0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz", + "integrity": "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/command-line-usage": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.3.tgz", + "integrity": "sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==", + "license": "MIT", + "dependencies": { + "array-back": "^4.0.2", + "chalk": "^2.4.2", + "table-layout": "^1.0.2", + "typical": "^5.2.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.27.1.tgz", + "integrity": "sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.1", + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz", + "integrity": "sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/pngjs": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz", + "integrity": "sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg==", + "license": "MIT", + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@jimp/plugin-normalize": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-normalize/-/plugin-normalize-0.22.12.tgz", + "integrity": "sha512-0So0rexQivnWgnhacX4cfkM2223YdExnJTTy6d06WbkfZk5alHUx8MM3yEzwoCN0ErO7oyqEWRnEkGC+As1FtA==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz", + "integrity": "sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/command-line-usage/node_modules/typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.27.1.tgz", + "integrity": "sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/wordwrapjs": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz", + "integrity": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==", + "license": "MIT", + "dependencies": { + "reduce-flatten": "^2.0.0", + "typical": "^5.2.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/finalhandler": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/libsodium-wrappers": { + "version": "0.7.15", + "resolved": "https://registry.npmjs.org/libsodium-wrappers/-/libsodium-wrappers-0.7.15.tgz", + "integrity": "sha512-E4anqJQwcfiC6+Yrl01C1m8p99wEhLmJSs0VQqST66SbQXXBoaJY0pF4BNjRYa/sOQAxx6lXAaAFIlx+15tXJQ==", + "license": "ISC", + "dependencies": { + "libsodium": "^0.7.15" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/@liamcottle/rustplus.js/node_modules/protobufjs/node_modules/long": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz", + "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==", + "license": "Apache-2.0" + }, + "node_modules/text-hex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", + "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==", + "license": "MIT" + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz", + "integrity": "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-wrap-function": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@discordjs/formatters": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/@discordjs/formatters/-/formatters-0.6.1.tgz", + "integrity": "sha512-5cnX+tASiPCqCWtFcFslxBVUaCetB0thvM/JyavhbXInP1HJIEU+Qv/zMrnuwSsX3yWH2lVXNJZeDK3EiP4HHg==", + "license": "Apache-2.0", + "dependencies": { + "discord-api-types": "^0.38.1" + }, + "engines": { + "node": ">=16.11.0" + }, + "funding": { + "url": "https://github.com/discordjs/discord.js?sponsor" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@discordjs/voice": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/@discordjs/voice/-/voice-0.18.0.tgz", + "integrity": "sha512-BvX6+VJE5/vhD9azV9vrZEt9hL1G+GlOdsQaVl5iv9n87fkXjf3cSwllhR3GdaUC8m6dqT8umXIWtn3yCu4afg==", + "license": "Apache-2.0", + "dependencies": { + "@types/ws": "^8.5.12", + "discord-api-types": "^0.37.103", + "prism-media": "^1.3.5", + "tslib": "^2.6.3", + "ws": "^8.18.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/discordjs/discord.js?sponsor" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.1.tgz", + "integrity": "sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.27.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/send": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/table-layout/node_modules/array-back": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", + "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jimp/plugin-flip": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-flip/-/plugin-flip-0.22.12.tgz", + "integrity": "sha512-m251Rop7GN8W0Yo/rF9LWk6kNclngyjIJs/VXHToGQ6EGveOSTSQaX2Isi9f9lCDLxt+inBIb7nlaLLxnvHX8Q==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-rotate": ">=0.3.5" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", + "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@formatjs/icu-skeleton-parser": { + "version": "1.8.8", + "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.8.8.tgz", + "integrity": "sha512-vHwK3piXwamFcx5YQdCdJxUQ1WdTl6ANclt5xba5zLGDv5Bsur7qz8AD7BevaKxITwpgDeU0u8My3AIibW9ywA==", + "license": "MIT", + "dependencies": { + "@formatjs/ecma402-abstract": "2.2.4", + "tslib": "2" + } + }, + "node_modules/@babel/core/node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - }, - "table-layout": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz", - "integrity": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==", - "requires": { - "array-back": "^4.0.1", - "deep-extend": "~0.6.0", - "typical": "^5.2.0", - "wordwrapjs": "^4.0.0" - }, - "dependencies": { - "array-back": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==" - }, - "typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==" - } - } - }, - "text-hex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", - "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" - }, - "timm": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/timm/-/timm-1.7.1.tgz", - "integrity": "sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==" - }, - "tinycolor2": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", - "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==" - }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" - }, - "toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - }, - "token-types": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/token-types/-/token-types-5.0.1.tgz", - "integrity": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==", - "requires": { - "@tokenizer/token": "^0.3.0", - "ieee754": "^1.2.1" - } - }, - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - }, - "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "translate": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/translate/-/translate-1.4.1.tgz", - "integrity": "sha512-kQVCT+Xf2Yu6tb2a3711Fm6p0Xh8BeEsy5pO6xPsRo2DwRMuKnjtWHR58gl8YiuuvVSMI78fTXbAfComWV8hFw==", - "requires": { - "@babel/preset-env": "^7.15.6", - "node-fetch": "^2.6.0" - } - }, - "triple-beam": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", - "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" - }, - "ts-mixer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/ts-mixer/-/ts-mixer-6.0.3.tgz", - "integrity": "sha512-k43M7uCG1AkTyxgnmI5MPwKoUvS/bRvLvUb7+Pgpdlmok8AoqmUaZxUUw8zKM5B1lqZrt41GjYgnvAi0fppqgQ==" - }, - "ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "requires": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - } - }, - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" - }, - "typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==" - }, - "typical": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", - "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==" - }, - "undici": { - "version": "5.21.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.21.0.tgz", - "integrity": "sha512-HOjK8l6a57b2ZGXOcUsI5NLfoTrfmbOl90ixJDl0AEFG4wgHNDQxtZy15/ZQp7HhjkpaGlp/eneMgtsu1dIlUA==", - "requires": { - "busboy": "^1.6.0" - } - }, - "unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" - }, - "unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "requires": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - } - }, - "unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" - }, - "unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" - }, - "update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", - "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - } - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "requires": { - "punycode": "^2.1.0" - } - }, - "urlsafe-base64": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/urlsafe-base64/-/urlsafe-base64-1.0.0.tgz", - "integrity": "sha512-RtuPeMy7c1UrHwproMZN9gN6kiZ0SvJwRaEzwZY0j9MypEkFqyBaKv176jvlPtg58Zh36bOkS0NFABXMHvvGCA==" - }, - "utif2": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/utif2/-/utif2-4.1.0.tgz", - "integrity": "sha512-+oknB9FHrJ7oW7A2WZYajOcv4FcDR4CfoGB0dPNfxbi4GO05RRnFmt5oa23+9w32EanrYcSJWspUiJkLMs+37w==", - "requires": { - "pako": "^1.0.11" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" - }, - "uuid": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", - "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==" - }, - "v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "whatwg-fetch": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", - "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" - }, - "whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - }, - "winston": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.8.2.tgz", - "integrity": "sha512-MsE1gRx1m5jdTTO9Ld/vND4krP2To+lgDoMEHGGa4HIlAUyXJtfc7CxQcGXVyz2IBpw5hbFkj2b/AtUdQwyRew==", - "requires": { - "@colors/colors": "1.5.0", - "@dabh/diagnostics": "^2.0.2", - "async": "^3.2.3", - "is-stream": "^2.0.0", - "logform": "^2.4.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "safe-stable-stringify": "^2.3.1", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.5.0" - } - }, - "winston-transport": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.5.0.tgz", - "integrity": "sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q==", - "requires": { - "logform": "^2.3.2", - "readable-stream": "^3.6.0", - "triple-beam": "^1.3.0" - } - }, - "wordwrapjs": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz", - "integrity": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==", - "requires": { - "reduce-flatten": "^2.0.0", - "typical": "^5.2.0" - }, - "dependencies": { - "typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==" - } - } - }, - "ws": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.15.0.tgz", - "integrity": "sha512-H/Z3H55mrcrgjFwI+5jKavgXvwQLtfPCUEp6pi35VhoB0pfcHnSoyuTzkBEZpzq49g1193CUEwIvmsjcotenYw==", - "requires": {} - }, - "xhr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", - "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", - "requires": { - "global": "~4.4.0", - "is-function": "^1.0.1", - "parse-headers": "^2.0.0", - "xtend": "^4.0.0" - } - }, - "xml-parse-from-string": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz", - "integrity": "sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==" - }, - "xml2js": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", - "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", - "requires": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" - } - }, - "xmlbuilder": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", - "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" - }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" - }, - "yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" + "optional": true + } + } + }, + "node_modules/typical": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", + "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/tinycolor2": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", + "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", + "license": "MIT" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http_ece": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/http_ece/-/http_ece-1.2.1.tgz", + "integrity": "sha512-+tzLoMYgXvicu60sVFoswTiu6BiQ6EX3DORRJQ3W2dNpNWCyZ3tcmRFZZ3jgVyw8ziWUCeUARKCkYDY6JgFx+w==", + "license": "MIT", + "engines": { + "node": ">=16" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "license": "ISC" + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" } + ], + "license": "MIT" + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", + "license": "BSD-3-Clause" + }, + "node_modules/@discordjs/builders": { + "version": "1.11.2", + "resolved": "https://registry.npmjs.org/@discordjs/builders/-/builders-1.11.2.tgz", + "integrity": "sha512-F1WTABdd8/R9D1icJzajC4IuLyyS8f3rTOz66JsSI3pKvpCAtsMBweu8cyNYsIyvcrKAVn9EPK+Psoymq+XC0A==", + "license": "Apache-2.0", + "dependencies": { + "@discordjs/formatters": "^0.6.1", + "@discordjs/util": "^1.1.1", + "@sapphire/shapeshift": "^4.0.0", + "discord-api-types": "^0.38.1", + "fast-deep-equal": "^3.1.3", + "ts-mixer": "^6.0.4", + "tslib": "^2.6.3" + }, + "engines": { + "node": ">=16.11.0" + }, + "funding": { + "url": "https://github.com/discordjs/discord.js?sponsor" + } + }, + "node_modules/xml2js": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.5.0.tgz", + "integrity": "sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==", + "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/libsodium": { + "version": "0.7.15", + "resolved": "https://registry.npmjs.org/libsodium/-/libsodium-0.7.15.tgz", + "integrity": "sha512-sZwRknt/tUpE2AwzHq3jEyUU5uvIZHtSssktXq7owd++3CSgn8RGrv6UZJJBpP7+iBghBqe7Z06/2M31rI2NKw==", + "license": "ISC" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@liamcottle/rustplus.js/node_modules/@liamcottle/push-receiver/node_modules/protobufjs/node_modules/long": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", + "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", + "license": "Apache-2.0" + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz", + "integrity": "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/@jimp/plugin-circle": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-circle/-/plugin-circle-0.22.12.tgz", + "integrity": "sha512-SWVXx1yiuj5jZtMijqUfvVOJBwOifFn0918ou4ftoHgegc5aHWW5dZbYPjvC9fLpvz7oSlptNl2Sxr1zwofjTg==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@jimp/core/node_modules/token-types": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz", + "integrity": "sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==", + "license": "MIT", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/@liamcottle/push-receiver": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/@liamcottle/push-receiver/-/push-receiver-0.0.4.tgz", + "integrity": "sha512-BzgNJieg4oLNxHNKxH/arRh05QaKFAlAP52SmjyYMfa5beechoojXvhtzNe7aCmIuqCaVfiekaRYvZxX3SIYMA==", + "license": "MIT", + "dependencies": { + "axios": "^1.7.7", + "http_ece": "^1.0.5", + "long": "^3.2.0", + "protobufjs": "^6.8.0", + "request": "^2.81.0", + "request-promise": "^4.2.1", + "uuid": "^3.1.0" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/timm": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/timm/-/timm-1.7.1.tgz", + "integrity": "sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==", + "license": "MIT" + }, + "node_modules/ffmpeg-static": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ffmpeg-static/-/ffmpeg-static-5.2.0.tgz", + "integrity": "sha512-WrM7kLW+do9HLr+H6tk7LzQ7kPqbAgLjdzNE32+u3Ff11gXt9Kkkd2nusGFrlWMIe+XaA97t+I8JS7sZIrvRgA==", + "hasInstallScript": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "@derhuerst/http-basic": "^8.2.0", + "env-paths": "^2.2.0", + "https-proxy-agent": "^5.0.0", + "progress": "^2.0.3" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.27.1.tgz", + "integrity": "sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/fn.name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", + "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==", + "license": "MIT" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/@derhuerst/http-basic": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/@derhuerst/http-basic/-/http-basic-8.2.4.tgz", + "integrity": "sha512-F9rL9k9Xjf5blCz8HsJRO4diy111cayL2vkY2XE4r4t3n0yPXVYy3KD3nJ1qbrSn9743UWSXH4IwuCa/HWlGFw==", + "license": "MIT", + "dependencies": { + "caseless": "^0.12.0", + "concat-stream": "^2.0.0", + "http-response-object": "^3.0.1", + "parse-cache-control": "^1.0.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/@jimp/gif": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/gif/-/gif-0.22.12.tgz", + "integrity": "sha512-y6BFTJgch9mbor2H234VSjd9iwAhaNf/t3US5qpYIs0TSbAvM02Fbc28IaDETj9+4YB4676sz4RcN/zwhfu1pg==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "gifwrap": "^0.10.1", + "omggif": "^1.0.9" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "license": "MIT", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/regexpu-core": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", + "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.0", + "regjsgen": "^0.8.0", + "regjsparser": "^0.12.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/form-data": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.3.tgz", + "integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/gifwrap": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/gifwrap/-/gifwrap-0.10.1.tgz", + "integrity": "sha512-2760b1vpJHNmLzZ/ubTtNnEx5WApN/PYWJvXvgS+tL1egTTthayFYIQQNi136FLEDcN/IyEY2EcGpIITD6eYUw==", + "license": "MIT", + "dependencies": { + "image-q": "^4.0.0", + "omggif": "^1.0.10" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "license": "MIT" + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@babel/core": { + "version": "7.27.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.27.4.tgz", + "integrity": "sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==", + "license": "MIT", + "peer": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.27.3", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.27.3", + "@babel/helpers": "^7.27.4", + "@babel/parser": "^7.27.4", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.27.4", + "@babel/types": "^7.27.3", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@liamcottle/rustplus.js/node_modules/protobufjs": { + "version": "7.2.4", + "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.4.tgz", + "integrity": "sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==", + "hasInstallScript": true, + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@jimp/png": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/png/-/png-0.22.12.tgz", + "integrity": "sha512-Mrp6dr3UTn+aLK8ty/dSKELz+Otdz1v4aAXzV5q53UDD2rbB5joKVJ/ChY310B+eRzNxIovbUF1KVrUsYdE8Hg==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "pngjs": "^6.0.0" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "license": "ISC" + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "license": "MIT", + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz", + "integrity": "sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "license": "MIT", + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz", + "integrity": "sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@sapphire/snowflake": { + "version": "3.5.5", + "resolved": "https://registry.npmjs.org/@sapphire/snowflake/-/snowflake-3.5.5.tgz", + "integrity": "sha512-xzvBr1Q1c4lCe7i6sRnrofxeO1QTP/LKQ6A6qy0iB4x5yfiSfARMEQEghojzTNALDTcv8En04qYNIco9/K9eZQ==", + "license": "MIT", + "engines": { + "node": ">=v14.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ws": { + "version": "8.18.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.2.tgz", + "integrity": "sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/magic-bytes.js": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/magic-bytes.js/-/magic-bytes.js-1.12.1.tgz", + "integrity": "sha512-ThQLOhN86ZkJ7qemtVRGYM+gRgR8GEXNli9H/PMvpnZsE44Xfh3wx9kGJaldg314v85m+bFW6WBMaVHJc/c3zA==", + "license": "MIT" + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz", + "integrity": "sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@liamcottle/rustplus.js": { + "version": "2.5.0", + "resolved": "git+ssh://git@github.com/alexemanuelol/rustplus.js.git#089cfd3db1b04709911948bce669273139c6a124", + "integrity": "sha512-VtH3gfqwRqo0aaa7s2BUCB/29fOWiO1rJeH/cZwN7v7QoYBZfqNVhhfehDc8dbmMyRkOvCZ9QEX/DzkVctQPVg==", + "license": "MIT", + "dependencies": { + "@liamcottle/push-receiver": "^0.0.3", + "axios": "^1.2.2", + "chrome-launcher": "^0.15.0", + "command-line-args": "^5.2.0", + "command-line-usage": "^6.1.1", + "express": "^4.17.1", + "jimp": "^0.22.7", + "protobufjs": "^7.1.2", + "uuid": "^9.0.0", + "ws": "^8.3.0" + }, + "bin": { + "rustplus": "cli/index.js" + } + }, + "node_modules/stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz", + "integrity": "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz", + "integrity": "sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@jimp/plugin-blit": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-blit/-/plugin-blit-0.22.12.tgz", + "integrity": "sha512-xslz2ZoFZOPLY8EZ4dC29m168BtDx95D6K80TzgUi8gqT7LY6CsajWO0FAxDwHz6h0eomHMfyGX0stspBrTKnQ==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } } + } } \ No newline at end of file diff --git a/package.json b/package.json index 09cf55b6c..2657f40c2 100644 --- a/package.json +++ b/package.json @@ -1,45 +1,45 @@ -{ - "name": "rustplusplus", - "version": "1.16.0", - "description": "A NodeJS Discord Bot that uses the rustplus.js library to utilize the power of the Rust+ Companion App with additional Quality-of-Life features.", - "main": "index.ts", - "scripts": { - "start": "ts-node .", - "preinstall": "npx npm-force-resolutions", - "test": "tsc --noEmit -p ." - }, - "repository": { - "type": "git", - "url": "https://github.com/alexemanuelol/rustplusplus.git" - }, - "author": "Alexemanuelol", - "license": "SEE LICENSE IN LICENSE", - "bugs": { - "url": "https://github.com/alexemanuelol/rustplusplus/issues" - }, - "homepage": "https://github.com/alexemanuelol/rustplusplus#readme", - "dependencies": { - "@discordjs/rest": "^1.6.0", - "@discordjs/voice": "^0.16.0", - "@formatjs/intl": "^2.6.9", - "@liamcottle/rustplus.js": "^2.4.0", - "axios": "^1.3.4", - "colors": "^1.4.0", - "discord-api-types": "^0.37.37", - "discord.js": "^14.8.0", - "ffmpeg-static": "^5.1.0", - "gm": "^1.25.0", - "jimp": "^0.22.7", - "libsodium-wrappers": "^0.7.11", - "lodash": "^4.17.21", - "push-receiver": "^2.1.1", - "translate": "^1.4.1", - "ts-node": "^10.9.1", - "typescript": "^4.8.2", - "winston": "^3.8.2" - }, - "resolutions": { - "jpeg-js": "0.4.4", - "protobufjs": "7.2.4" - } +{ + "name": "rustplusplus", + "version": "1.22.0", + "description": "A NodeJS Discord Bot that uses the rustplus.js library to utilize the power of the Rust+ Companion App with additional Quality-of-Life features.", + "main": "index.ts", + "scripts": { + "start": "ts-node .", + "preinstall": "npx npm-force-resolutions", + "test": "tsc --noEmit -p ." + }, + "repository": { + "type": "git", + "url": "https://github.com/alexemanuelol/rustplusplus.git" + }, + "author": "Alexemanuelol", + "license": "SEE LICENSE IN LICENSE", + "bugs": { + "url": "https://github.com/alexemanuelol/rustplusplus/issues" + }, + "homepage": "https://github.com/alexemanuelol/rustplusplus#readme", + "dependencies": { + "@discordjs/rest": "^2.5.1", + "@discordjs/voice": "^0.18.0", + "@formatjs/intl": "^2.6.9", + "@liamcottle/push-receiver": "^0.0.4", + "@liamcottle/rustplus.js": "git+https://github.com/alexemanuelol/rustplus.js.git#089cfd3db1b04709911948bce669273139c6a124", + "axios": "^1.3.4", + "colors": "^1.4.0", + "discord-api-types": "^0.38.14", + "discord.js": "^14.21.0", + "ffmpeg-static": "^5.1.0", + "gm": "^1.25.0", + "jimp": "^0.22.7", + "libsodium-wrappers": "^0.7.11", + "lodash": "^4.17.21", + "translate": "^1.4.1", + "ts-node": "^10.9.2", + "typescript": "^5.8.3", + "winston": "^3.8.2" + }, + "resolutions": { + "jpeg-js": "0.4.4", + "protobufjs": "7.2.4" + } } \ No newline at end of file diff --git a/src/commands/cctv.js b/src/commands/cctv.js index 8f402f5b7..8c73e4e09 100644 --- a/src/commands/cctv.js +++ b/src/commands/cctv.js @@ -43,6 +43,8 @@ module.exports = { { name: client.intlGet(guildId, 'outpost'), value: 'Outpost' }, { name: client.intlGet(guildId, 'smallOilRig'), value: 'Small Oil Rig' }, { name: client.intlGet(guildId, 'underwaterLab'), value: 'Underwater Labs' }, + { name: client.intlGet(guildId, 'cargoship'), value: 'Cargo Ship' }, + { name: client.intlGet(guildId, 'ferryTerminal'), value: 'Ferry Terminal' }, )); }, diff --git a/src/commands/credentials.js b/src/commands/credentials.js index cc84f31fd..d6c7591dd 100644 --- a/src/commands/credentials.js +++ b/src/commands/credentials.js @@ -37,30 +37,6 @@ module.exports = { .addSubcommand(subcommand => subcommand .setName('add') .setDescription(client.intlGet(guildId, 'commandsCredentialsAddDesc')) - .addStringOption(option => option - .setName('keys_private_key') - .setDescription('Keys Private Key.') - .setRequired(true)) - .addStringOption(option => option - .setName('keys_public_key') - .setDescription('Keys Public Key.') - .setRequired(true)) - .addStringOption(option => option - .setName('keys_auth_secret') - .setDescription('Keys Auth Secret.') - .setRequired(true)) - .addStringOption(option => option - .setName('fcm_token') - .setDescription('FCM Token.') - .setRequired(true)) - .addStringOption(option => option - .setName('fcm_push_set') - .setDescription('FCM Push Set.') - .setRequired(true)) - .addStringOption(option => option - .setName('gcm_token') - .setDescription('GCM Token.') - .setRequired(true)) .addStringOption(option => option .setName('gcm_android_id') .setDescription('GCM Android ID.') @@ -69,14 +45,18 @@ module.exports = { .setName('gcm_security_token') .setDescription('GCM Security Token.') .setRequired(true)) - .addStringOption(option => option - .setName('gcm_app_id') - .setDescription('GCM App ID.') - .setRequired(true)) .addStringOption(option => option .setName('steam_id') .setDescription('Steam ID.') .setRequired(true)) + .addStringOption(option => option + .setName('issued_date') + .setDescription('Issued date of the credentials.') + .setRequired(true)) + .addStringOption(option => option + .setName('expire_date') + .setDescription('Expire date of the credentials.') + .setRequired(true)) .addBooleanOption(option => option .setName('host') .setDescription('Host the bot') @@ -153,24 +133,12 @@ async function addCredentials(client, interaction, verifyId) { } credentials[steamId] = new Object(); - credentials[steamId].fcm_credentials = new Object(); - - credentials[steamId].fcm_credentials.keys = new Object(); - credentials[steamId].fcm_credentials.keys.privateKey = interaction.options.getString('keys_private_key'); - credentials[steamId].fcm_credentials.keys.publicKey = interaction.options.getString('keys_public_key'); - credentials[steamId].fcm_credentials.keys.authSecret = interaction.options.getString('keys_auth_secret'); - - credentials[steamId].fcm_credentials.fcm = new Object(); - credentials[steamId].fcm_credentials.fcm.token = interaction.options.getString('fcm_token'); - credentials[steamId].fcm_credentials.fcm.pushSet = interaction.options.getString('fcm_push_set'); - - credentials[steamId].fcm_credentials.gcm = new Object(); - credentials[steamId].fcm_credentials.gcm.token = interaction.options.getString('gcm_token'); - credentials[steamId].fcm_credentials.gcm.androidId = interaction.options.getString('gcm_android_id'); - credentials[steamId].fcm_credentials.gcm.securityToken = interaction.options.getString('gcm_security_token'); - credentials[steamId].fcm_credentials.gcm.appId = interaction.options.getString('gcm_app_id'); - - credentials[steamId].discordUserId = interaction.member.user.id; + credentials[steamId].gcm = new Object(); + credentials[steamId].gcm.android_id = interaction.options.getString('gcm_android_id'); + credentials[steamId].gcm.security_token = interaction.options.getString('gcm_security_token'); + credentials[steamId].issued_date = interaction.options.getString('issued_date'); + credentials[steamId].expire_date = interaction.options.getString('expire_date'); + credentials[steamId].discord_user_id = interaction.member.user.id; const prevHoster = credentials.hoster; if (isHoster) credentials.hoster = steamId; @@ -196,17 +164,12 @@ async function addCredentials(client, interaction, verifyId) { client.log(client.intlGet(null, 'infoCap'), client.intlGet(null, 'slashCommandValueChange', { id: `${verifyId}`, value: `add, ${steamId}, ` + - `${credentials[steamId].discordUserId}, ` + + `${credentials[steamId].discord_user_id}, ` + `${isHoster}, ` + - `${credentials[steamId].fcm_credentials.keys.privateKey}, ` + - `${credentials[steamId].fcm_credentials.keys.publicKey}, ` + - `${credentials[steamId].fcm_credentials.keys.authSecret}, ` + - `${credentials[steamId].fcm_credentials.fcm.token}, ` + - `${credentials[steamId].fcm_credentials.fcm.pushSet}, ` + - `${credentials[steamId].fcm_credentials.gcm.token}, ` + - `${credentials[steamId].fcm_credentials.gcm.androidId}, ` + - `${credentials[steamId].fcm_credentials.gcm.securityToken}, ` + - `${credentials[steamId].fcm_credentials.gcm.appId}` + `${credentials[steamId].gcm.android_id}, ` + + `${credentials[steamId].gcm.security_token}, ` + + `${credentials[steamId].issued_date}, ` + + `${credentials[steamId].expire_date}` })); const str = client.intlGet(interaction.guildId, 'credentialsAddedSuccessfully', { steamId: steamId }); @@ -219,7 +182,7 @@ async function removeCredentials(client, interaction, verifyId) { const credentials = InstanceUtils.readCredentialsFile(guildId); let steamId = interaction.options.getString('steam_id'); - if (steamId && (steamId in credentials) && credentials[steamId].discordUserId !== interaction.member.user.id) { + if (steamId && (steamId in credentials) && credentials[steamId].discord_user_id !== interaction.member.user.id) { if (Config.discord.needAdminPrivileges && !client.isAdministrator(interaction)) { const str = client.intlGet(interaction.guildId, 'missingPermission'); client.interactionEditReply(interaction, DiscordEmbeds.getActionInfoEmbed(1, str)); @@ -232,7 +195,7 @@ async function removeCredentials(client, interaction, verifyId) { for (const credential of Object.keys(credentials)) { if (credential === 'hoster') continue; - if (credentials[credential].discordUserId === interaction.member.user.id) { + if (credentials[credential].discord_user_id === interaction.member.user.id) { steamId = credential; break; } @@ -298,7 +261,7 @@ async function setHosterCredentials(client, interaction, verifyId) { if (!steamId) { steamId = Object.keys(credentials).find(e => credentials[e] && - credentials[e].discordUserId === interaction.member.user.id); + credentials[e].discord_user_id === interaction.member.user.id); } if (!(steamId in credentials)) { diff --git a/src/commands/players.js b/src/commands/players.js index 636245b6c..90645c470 100644 --- a/src/commands/players.js +++ b/src/commands/players.js @@ -381,7 +381,7 @@ async function displaySeveralUsers(client, interaction, battlemetricsId, playerI for (const field of fields) { embed.addFields({ name: fieldCounter === 0 ? client.intlGet(interaction.guildId, 'players') : '\u200B', - value: field, + value: field === '' ? '\u200B' : field, inline: true }); fieldCounter += 1; diff --git a/src/commands/recycle.js b/src/commands/recycle.js index 237d93bb6..bfe49cb6b 100644 --- a/src/commands/recycle.js +++ b/src/commands/recycle.js @@ -41,7 +41,15 @@ module.exports = { .addIntegerOption(option => option .setName('quantity') .setDescription(client.intlGet(guildId, 'commandsRecycleQuantityDesc')) - .setRequired(false)); + .setRequired(false)) + .addStringOption(option => option + .setName('recycler-type') + .setDescription(client.intlGet(guildId, 'commandsRecycleRecyclerTypeDesc')) + .setRequired(false) + .addChoices( + { name: client.intlGet(guildId, 'recycler'), value: 'recycler' }, + { name: client.intlGet(guildId, 'shredder'), value: 'shredder' }, + { name: client.intlGet(guildId, 'safe-zone-recycler'), value: 'safe-zone-recycler' })); }, async execute(client, interaction) { @@ -56,6 +64,7 @@ module.exports = { const recycleItemName = interaction.options.getString('name'); const recycleItemId = interaction.options.getString('id'); const recycleItemQuantity = interaction.options.getInteger('quantity'); + const recycleItemRecyclerType = interaction.options.getString('recycler-type'); let itemId = null; if (recycleItemName !== null) { @@ -104,13 +113,14 @@ module.exports = { } const quantity = recycleItemQuantity === null ? 1 : recycleItemQuantity; + const recyclerType = recycleItemRecyclerType === null ? 'recycler' : recycleItemRecyclerType; client.log(client.intlGet(null, 'infoCap'), client.intlGet(null, 'slashCommandValueChange', { id: `${verifyId}`, - value: `${recycleItemName} ${recycleItemId} ${recycleItemQuantity}` + value: `${recycleItemName} ${recycleItemId} ${recycleItemQuantity} ${recycleItemRecyclerType}` })); - await DiscordMessages.sendRecycleMessage(interaction, recycleDetails, quantity); + await DiscordMessages.sendRecycleMessage(interaction, recycleDetails, quantity, recyclerType); client.log(client.intlGet(null, 'infoCap'), client.intlGet(guildId, 'commandsRecycleDesc')); }, }; diff --git a/src/commands/voice.js b/src/commands/voice.js index 49e3828fb..03debb4e1 100644 --- a/src/commands/voice.js +++ b/src/commands/voice.js @@ -61,7 +61,10 @@ module.exports = { await DiscordMessages.sendVoiceMessage(interaction, client.intlGet(interaction.guildId, 'commandsVoiceBotJoinedVoice')); client.log(client.intlGet(null, 'infoCap'), client.intlGet(interaction.guildId, 'commandsVoiceJoin', - { name: voiceChannel.name, id: voiceChannel.id, guild: voiceChannel.guild.name })); + { name: voiceChannel && voiceChannel.name ? voiceChannel.name : client.intlGet(interaction.guildId, 'unknown'), + id: voiceChannel && voiceChannel.id ? voiceChannel.id : client.intlGet(interaction.guildId, 'unknown'), + guild: voiceChannel && voiceChannel.guild.name ? voiceChannel.guild.name : client.intlGet(interaction.guildId, 'unknown')} + )); } else { await DiscordMessages.sendVoiceMessage(interaction, diff --git a/src/discordEvents/guildMemberRemove.js b/src/discordEvents/guildMemberRemove.js index 0eb7e49ae..df9a43bb0 100644 --- a/src/discordEvents/guildMemberRemove.js +++ b/src/discordEvents/guildMemberRemove.js @@ -28,7 +28,7 @@ module.exports = { const credentials = InstanceUtils.readCredentialsFile(guildId); - const steamId = Object.keys(credentials).find(e => credentials[e] && credentials[e].discordUserId === userId); + const steamId = Object.keys(credentials).find(e => credentials[e] && credentials[e].discord_user_id === userId); if (!(steamId in credentials)) return; diff --git a/src/discordTools/discordButtons.js b/src/discordTools/discordButtons.js index 7f90a1066..2eb35fe7f 100644 --- a/src/discordTools/discordButtons.js +++ b/src/discordTools/discordButtons.js @@ -516,7 +516,7 @@ module.exports = { module.exports.getButton({ style: Discord.ButtonStyle.Link, label: 'CREDENTIALS', - url: 'https://github.com/alexemanuelol/rustplusplus-Credential-Application/releases/v1.1.0' + url: 'https://github.com/alexemanuelol/rustplusplus-Credential-Application/releases/v1.4.0' }) )]; }, diff --git a/src/discordTools/discordEmbeds.js b/src/discordTools/discordEmbeds.js index d9deb2554..ece33295b 100644 --- a/src/discordTools/discordEmbeds.js +++ b/src/discordTools/discordEmbeds.js @@ -26,6 +26,11 @@ const DiscordTools = require('./discordTools.js'); const InstanceUtils = require('../util/instanceUtils.js'); const Timer = require('../util/timer'); +function isValidUrl(url) { + if (url.startsWith('https') || url.startsWith('http')) return true; + return false; +} + module.exports = { getEmbed: function (options = {}) { const embed = new Discord.EmbedBuilder(); @@ -70,7 +75,7 @@ module.exports = { const server = instance.serverList[serverId]; let hoster = Client.client.intlGet(guildId, 'unknown'); if (credentials.hasOwnProperty(server.steamId)) { - hoster = await DiscordTools.getUserById(guildId, credentials[server.steamId].discordUserId); + hoster = await DiscordTools.getUserById(guildId, credentials[server.steamId].discord_user_id); hoster = hoster.user.username; } @@ -434,7 +439,7 @@ module.exports = { const grid = entity.location !== null ? ` (${entity.location})` : ''; let itemName = '', itemQuantity = ''; - for (const item of items) { + for (const item of items['recycler']) { itemName += `\`${Client.client.items.getName(item.itemId)}\`\n`; itemQuantity += `\`${item.quantity}\`\n`; } @@ -498,7 +503,7 @@ module.exports = { const server = instance.serverList[serverId]; const entity = server.storageMonitors[entityId]; const credentials = InstanceUtils.readCredentialsFile(guildId); - const user = await DiscordTools.getUserById(guildId, credentials[server.steamId].discordUserId); + const user = await DiscordTools.getUserById(guildId, credentials[server.steamId].discord_user_id); const grid = entity.location !== null ? ` (${entity.location})` : ''; return module.exports.getEmbed({ @@ -519,7 +524,7 @@ module.exports = { const server = instance.serverList[serverId]; const entity = instance.serverList[serverId].switches[entityId]; const credentials = InstanceUtils.readCredentialsFile(guildId); - const user = await DiscordTools.getUserById(guildId, credentials[server.steamId].discordUserId); + const user = await DiscordTools.getUserById(guildId, credentials[server.steamId].discord_user_id); const grid = entity.location !== null ? ` (${entity.location})` : ''; return module.exports.getEmbed({ @@ -540,7 +545,7 @@ module.exports = { const server = instance.serverList[serverId]; const entity = server.alarms[entityId]; const credentials = InstanceUtils.readCredentialsFile(guildId); - const user = await DiscordTools.getUserById(guildId, credentials[server.steamId].discordUserId); + const user = await DiscordTools.getUserById(guildId, credentials[server.steamId].discord_user_id); const grid = entity.location !== null ? ` (${entity.location})` : ''; return module.exports.getEmbed({ @@ -597,7 +602,7 @@ module.exports = { footer: { text: body.name }, title: data.title, description: data.message, - thumbnail: body.img !== '' ? body.img : 'attachment://rocket.png' + thumbnail: (body.img !== '' && isValidUrl(body.img)) ? body.img : 'attachment://rocket.png' }); }, @@ -759,12 +764,14 @@ module.exports = { const smallOilRigFieldName = Client.client.intlGet(guildId, 'smallOilRig'); const largeOilRigFieldName = Client.client.intlGet(guildId, 'largeOilRig'); const chinook47FieldName = Client.client.intlGet(guildId, 'chinook47'); + const travelingVendorFieldName = Client.client.intlGet(guildId, 'travelingVendor'); const cargoShipMessage = rustplus.getCommandCargo(true); const patrolHelicopterMessage = rustplus.getCommandHeli(true); const smallOilMessage = rustplus.getCommandSmall(true); const largeOilMessage = rustplus.getCommandLarge(true); const ch47Message = rustplus.getCommandChinook(true); + const travelingVendorMessage = rustplus.getCommandTravelingVendor(true); return module.exports.getEmbed({ title: Client.client.intlGet(guildId, 'eventInfo'), @@ -777,7 +784,8 @@ module.exports = { { name: patrolHelicopterFieldName, value: `\`${patrolHelicopterMessage}\``, inline: true }, { name: smallOilRigFieldName, value: `\`${smallOilMessage}\``, inline: true }, { name: largeOilRigFieldName, value: `\`${largeOilMessage}\``, inline: true }, - { name: chinook47FieldName, value: `\`${ch47Message}\``, inline: true }], + { name: chinook47FieldName, value: `\`${ch47Message}\``, inline: true }, + { name: travelingVendorFieldName, value: `\`${travelingVendorMessage}\``, inline: true }], timestamp: true }); }, @@ -953,7 +961,7 @@ module.exports = { for (const field of fields) { embed.addFields({ name: fieldCounter === 0 ? Client.client.intlGet(guildId, 'players') : '\u200B', - value: field, + value: field === '' ? '\u200B' : field, inline: true }); fieldCounter += 1; @@ -991,7 +999,7 @@ module.exports = { for (const credential in credentials) { if (credential === 'hoster') continue; - const user = await DiscordTools.getUserById(guildId, credentials[credential].discordUserId); + const user = await DiscordTools.getUserById(guildId, credentials[credential].discord_user_id); names += `${user.user.username}\n`; steamIds += `${credential}\n`; hoster += `${credential === credentials.hoster ? `${Constants.LEADER_EMOJI}\n` : '\u200B\n'}`; @@ -1141,21 +1149,22 @@ module.exports = { }); }, - getRecycleEmbed: function (guildId, recycleDetails, quantity) { - const title = quantity === 1 ? `${recycleDetails[1].name}` : `${recycleDetails[1].name} x${quantity}`; + getRecycleEmbed: function (guildId, recycleDetails, quantity, recyclerType) { + let title = quantity === 1 ? `${recycleDetails[1].name}` : `${recycleDetails[1].name} x${quantity}`; + title += ` (${Client.client.intlGet(guildId, recyclerType)})`; const recycleData = Client.client.rustlabs.getRecycleDataFromArray([ { itemId: recycleDetails[0], quantity: quantity, itemIsBlueprint: false } ]); let items0 = '', quantities0 = ''; - for (const item of recycleDetails[2]) { + for (const item of recycleDetails[2][recyclerType]['yield']) { items0 += `${Client.client.items.getName(item.id)}\n`; quantities0 += (item.probability !== 1) ? `${parseInt(item.probability * 100)}%\n` : `${item.quantity}\n`; } let items1 = '', quantities1 = ''; - for (const item of recycleData) { + for (const item of recycleData[recyclerType]) { items1 += `${Client.client.items.getName(item.itemId)}\n`; quantities1 += `${item.quantity}\n`; } @@ -1335,7 +1344,7 @@ module.exports = { const recycleDetails = type === 'items' ? Client.client.rustlabs.getRecycleDetailsById(itemId) : null; if (recycleDetails !== null) { - const details = recycleDetails[2]; + const details = recycleDetails[2]['recycler']['yield']; let recycleString = ''; for (const recycleItem of details) { diff --git a/src/discordTools/discordMessages.js b/src/discordTools/discordMessages.js index 35364ff7d..dcc2e0ee5 100644 --- a/src/discordTools/discordMessages.js +++ b/src/discordTools/discordMessages.js @@ -569,9 +569,9 @@ module.exports = { await Client.client.interactionEditReply(interaction, content); }, - sendRecycleMessage: async function (interaction, recycleDetails, quantity) { + sendRecycleMessage: async function (interaction, recycleDetails, quantity, recyclerType) { const content = { - embeds: [DiscordEmbeds.getRecycleEmbed(interaction.guildId, recycleDetails, quantity)], + embeds: [DiscordEmbeds.getRecycleEmbed(interaction.guildId, recycleDetails, quantity, recyclerType)], ephemeral: true } diff --git a/src/external/process_rustlabs.js b/src/external/process_rustlabs.js index 556171312..c12a68b40 100644 --- a/src/external/process_rustlabs.js +++ b/src/external/process_rustlabs.js @@ -29,39 +29,42 @@ const Utils = require('../util/utils.js'); const SLEEP_TIMEOUT_MS = 2000; -const RUSTLABS_ALL_ITEMS_URL = 'https://rustlabs.com/group=itemlist'; -const RUSTLABS_ITEM_URL = 'https://rustlabs.com/item/'; +const RUSTLABS_ALL_ITEMS_URL = 'https://wiki.rustclash.com/group=itemlist'; +const RUSTLABS_ITEM_URL = 'https://wiki.rustclash.com/item/'; -const RUSTLABS_ALL_LOOT_CONTAINERS_URL = 'https://rustlabs.com/group=containers'; -const RUSTLABS_ENTITY_URL = 'https://rustlabs.com/entity/'; +const RUSTLABS_ALL_LOOT_CONTAINERS_URL = 'https://wiki.rustclash.com/group=containers'; +const RUSTLABS_ENTITY_URL = 'https://wiki.rustclash.com/entity/'; -const RUSTLABS_ALL_BUILDING_BLOCKS_URL = 'https://rustlabs.com/group=building-blocks'; -const RUSTLABS_BUILDING_BLOCK_URL = 'https://rustlabs.com/building/'; +const RUSTLABS_ALL_BUILDING_BLOCKS_URL = 'https://wiki.rustclash.com/group=building-blocks'; +const RUSTLABS_BUILDING_BLOCK_URL = 'https://wiki.rustclash.com/building/'; -const RUSTLABS_ALL_OTHER_URL = 'https://rustlabs.com/group=else'; -const RUSTLABS_OTHER_URL = 'https://rustlabs.com/entity/'; +const RUSTLABS_ALL_OTHER_URL = 'https://wiki.rustclash.com/group=else'; +const RUSTLABS_OTHER_URL = 'https://wiki.rustclash.com/entity/'; const RUSTLABS_ALL_ITEMS_REGEX = /<\/td>\n^.*?$\n^.*?$\n<\/td>/gm -const RUSTLABS_ITEM_RECYCLE_REGEX = /(.*?)<\/span><\/a>/gm +const RUSTLABS_ITEM_RECYCLE_AREA_REGEX = /Recycler<\/th>(\n|.)*?<\/table>/gm +const RUSTLABS_ITEM_RECYCLE_ROW_REGEX = /(\n|.)*?<\/tr>/gm +const RUSTLABS_ITEM_RECYCLE_ITEM_REGEX = /\/entity\/(.*?)"/gm +const RUSTLABS_ITEM_RECYCLE_ITEM_EFFICIENCY_REGEX = /.*?%<\/td>/gm +const RUSTLABS_ITEM_RECYCLE_OUTPUT_ITEMS_REGEX = /(.*?)<\/span><\/a>/gm const RUSTLABS_ITEM_CRAFT_AREA_REGEX = /data-name="craft"\sclass="tab-page(\n|.)*?<\/thead(\n|.)*?<\/tr>/gm const RUSTLABS_ITEM_CRAFT_INGREDIENTS_REGEX = /(.*?)<\/span><\/a>/gm -const RUSTLABS_ITEM_CRAFT_TIME_REGEX = /^(.*?)<\/td>$/gm +const RUSTLABS_ITEM_CRAFT_TIME_REGEX = /^\s*(.*?)<\/td>/gm const RUSTLABS_ITEM_RESEARCH_AREA_REGEX = /data-name="blueprint"\sclass="tab-page(\n|.)*?/gm const RUSTLABS_ITEM_RESEARCH_ROW_REGEX = /(\n|.)*?<\/tr>/gm const RUSTLABS_ITEM_RESEARCH_TYPE_REGEX = - /(\n|.)*?(\n|.)*?(.*?)<\/span>/gm const RUSTLABS_ITEM_RESEARCH_TOTAL_SCRAP_REGEX = //gm const RUSTLABS_ITEM_DURABILITY_AREA_REGEX1 = /(\n|.)*?<\/tr>/gm const RUSTLABS_ITEM_DURABILITY_AREA_REGEX2 = /(\n|.)*?<\/tr>/gm -const RUSTLABS_ITEM_DURABILITY_TOOL_REGEX = //gm +const RUSTLABS_ITEM_DURABILITY_TOOL_REGEX = //gm const RUSTLABS_ITEM_DURABILITY_CAPTION_IN_TOOL_REGEX = /caption-in-item-name">(.*?)(.{1,10})<\/td>/gm const RUSTLABS_ITEM_DURABILITY_QUANTITY_APPROX_REGEX = /Approximate\sQuantity">(.*?) ITEMS[e].shortname === shortnameSub && ITEMS[e].name === nameSub); - if (id === undefined) exit(); + let recyclerType = null; + const recyclerMatches = rowData.matchAll(RUSTLABS_ITEM_RECYCLE_ITEM_REGEX); + for (const match of recyclerMatches) { + if (match.length !== 2) exit(); + recyclerType = match[1]; + break; + } + if (recyclerType === null) exit(); - let probability = 1; - if (quantity === '') { - quantity = 1; + let efficiency = null; + const efficiencyMatches = rowData.matchAll(RUSTLABS_ITEM_RECYCLE_ITEM_EFFICIENCY_REGEX); + for (const match of efficiencyMatches) { + if (match.length !== 2) exit(); + efficiency = match[1]; + break; } - else { - quantity = quantity.replace('×', '').replace(/,/g, ''); + recycleData[recyclerType]['efficiency'] = efficiency; + + const matches = rowData.matchAll(RUSTLABS_ITEM_RECYCLE_OUTPUT_ITEMS_REGEX); + for (const match of matches) { + if (match.length !== 4) exit(); + + const shortnameSub = match[1]; + const nameSub = Utils.decodeHtml(match[2]); + let quantity = match[3]; + const id = Object.keys(ITEMS).find(e => ITEMS[e].shortname === shortnameSub && ITEMS[e].name === nameSub); + if (id === undefined) exit(); - if (quantity.includes('%')) { - probability = `0.${quantity.replace('%', '')}`; + let probability = 1; + if (quantity === '') { quantity = 1; } - } + else { + quantity = quantity.replace('×', '').replace(/,/g, ''); - recycleItems.push({ - id: id, - probability: parseFloat(probability), - quantity: parseFloat(quantity) - }); + if (quantity.includes('%')) { + probability = `0.${quantity.replace('%', '')}`; + quantity = 1; + } + } + + recycleData[recyclerType]['yield'].push({ + id: id, + probability: parseFloat(probability), + quantity: parseFloat(quantity) + }); + } } - rustlabsRecycleData[itemId] = recycleItems; + rustlabsRecycleData[itemId] = recycleData; } function processItemDurability(rustlabsName, shortname, name, data, type = 'items') { @@ -551,8 +587,8 @@ function processItemDurability(rustlabsName, shortname, name, data, type = 'item if (toolMatches.length !== 0) { for (const toolMatch of toolMatches) { if (toolMatch.length !== 3) exit(); - toolShortname = toolMatch[1]; - toolName = toolMatch[2]; + toolShortname = Utils.decodeHtml(toolMatch[1]).replace('%20', ' '); + toolName = Utils.decodeHtml(toolMatch[2]).replace('%20', ' '); break; } } @@ -606,6 +642,7 @@ function processItemDurability(rustlabsName, shortname, name, data, type = 'item } } if (quantity === null) exit(); + let quantityTypeId = null; if (quantityTypeShortname !== null && quantityTypeName !== null) { quantityTypeId = Object.keys(ITEMS).find(e => @@ -613,7 +650,6 @@ function processItemDurability(rustlabsName, shortname, name, data, type = 'item if (!quantityTypeId) exit(); } - /* Time */ let timeString = null, time = null; const timeMatches = [...dataMatch.matchAll(RUSTLABS_ITEM_DURABILITY_TIME_REGEX)]; diff --git a/src/handlers/battlemetricsHandler.js b/src/handlers/battlemetricsHandler.js index 258cd057b..a8542dc0f 100644 --- a/src/handlers/battlemetricsHandler.js +++ b/src/handlers/battlemetricsHandler.js @@ -359,7 +359,7 @@ module.exports = { for (const field of fields) { outPutFields.push({ name: '\u200B', - value: field, + value: field === '' ? '\u200B' : field, inline: true }); fieldCounter += 1; @@ -413,7 +413,7 @@ module.exports = { for (const field of fields) { outPutFields.push({ name: '\u200B', - value: field, + value: field === '' ? '\u200B' : field, inline: true }); fieldCounter += 1; diff --git a/src/handlers/discordCommandHandler.js b/src/handlers/discordCommandHandler.js index d064a3d61..baf9f6bc4 100644 --- a/src/handlers/discordCommandHandler.js +++ b/src/handlers/discordCommandHandler.js @@ -200,6 +200,10 @@ module.exports = { commandLowerCase === `${prefix}${client.intlGet(guildId, 'commandSyntaxWipe')}`) { response = rustplus.getCommandWipe(); } + else if (commandLowerCase === `${prefix}${client.intlGet('en', 'commandSyntaxTravelingVendor')}` || + commandLowerCase === `${prefix}${client.intlGet(guildId, 'commandSyntaxTravelingVendor')}`) { + response = rustplus.getCommandTravelingVendor(); + } else { /* Smart Switches/ Group Switches are not currently supported through discord. */ return false; diff --git a/src/handlers/inGameChatHandler.js b/src/handlers/inGameChatHandler.js index 8f472f01f..28f885ada 100644 --- a/src/handlers/inGameChatHandler.js +++ b/src/handlers/inGameChatHandler.js @@ -40,7 +40,7 @@ module.exports = { rustplus.updateBotMessages(messageFromQueue); - await rustplus.sendTeamMessageAsync(messageFromQueue); + rustplus.sendTeamMessageAsync(messageFromQueue); rustplus.log(client.intlGet(guildId, 'messageCap'), messageFromQueue); } else { diff --git a/src/handlers/inGameCommandHandler.js b/src/handlers/inGameCommandHandler.js index 5e0d604d7..8d606ef74 100644 --- a/src/handlers/inGameCommandHandler.js +++ b/src/handlers/inGameCommandHandler.js @@ -207,6 +207,10 @@ module.exports = { commandLowerCase === `${prefix}${client.intlGet(guildId, 'commandSyntaxWipe')}`) { rustplus.sendInGameMessage(rustplus.getCommandWipe()); } + else if (commandLowerCase === `${prefix}${client.intlGet('en', 'commandSyntaxTravelingVendor')}` || + commandLowerCase === `${prefix}${client.intlGet(guildId, 'commandSyntaxTravelingVendor')}`) { + rustplus.sendInGameMessage(rustplus.getCommandTravelingVendor()); + } else { /* Maybe a custom command? */ diff --git a/src/handlers/smartSwitchHandler.js b/src/handlers/smartSwitchHandler.js index e2638795d..9a8629d51 100644 --- a/src/handlers/smartSwitchHandler.js +++ b/src/handlers/smartSwitchHandler.js @@ -388,6 +388,11 @@ module.exports = { active = true; } else { + const str = client.intlGet(guildId, 'deviceIsAlreadyOnOff', { + device: switches[entityId].name, + status: onCap + }); + rustplus.sendInGameMessage(str); return true; } } @@ -396,6 +401,11 @@ module.exports = { active = false; } else { + const str = client.intlGet(guildId, 'deviceIsAlreadyOnOff', { + device: switches[entityId].name, + status: offCap + }); + rustplus.sendInGameMessage(str); return true; } } diff --git a/src/languages/cs.json b/src/languages/cs.json index b06210980..e09ac66f7 100644 --- a/src/languages/cs.json +++ b/src/languages/cs.json @@ -70,9 +70,12 @@ "cargoLocatedAt": "Cargo Ship se nachází na {location}.", "cargoNotCurrentlyOnMap": "Cargo Ship není na mapě.", "cargoShipDetectedSetting": "Když Cargo Ship je detekována, pošli notifikaci.", + "cargoShipDockingAtHarbor": "Cargo ship just docked at the Harbor at {location}", + "cargoShipDockingAtHarborSetting": "When Cargo Ship is docked at a harbor, send a notification.", "cargoShipEgressSetting": "Když Cargo Ship začne opouštět mapu, pošli notifikaci.", "cargoShipEntersEgressStage": "Cargo Ship by měla opustit mapu na {location}.", "cargoShipEntersMap": "Cargo Ship vjede na mapu na {location}.", + "cargoShipLeftHarbor": "Cargo ship just left the Harbor at {location}", "cargoShipLeftMap": "Cargo Ship opustila mapu na {location}.", "cargoShipLeftSetting": "Když Cargo Ship opustí mapu, pošli notifikaci.", "cargoShipLocated": "Cargo Ship je na {location}.", @@ -157,6 +160,7 @@ "commandSyntaxTimers": "časovače", "commandSyntaxTranslateFromTo": "trf", "commandSyntaxTranslateTo": "tr", + "commandSyntaxTravelingVendor": "vendor", "commandSyntaxTwig": "twig", "commandSyntaxUnmute": "unmute", "commandSyntaxUnsubscribe": "unsub", @@ -219,6 +223,7 @@ "commandsPlayersStatusDesc": "Vyhledejte hráče, kteří jsou online/offline/libovolní.", "commandsRecycleDesc": "Zobrazit výsledek recyklace položky.", "commandsRecycleQuantityDesc": "Množství položek k recyklaci.", + "commandsRecycleRecyclerTypeDesc": "The recycler type (recycler, shredder, safe-zone-recycler).", "commandsResearchDesc": "Zobrazit náklady na výzkum položky.", "commandsResetAlarmsDesc": "Resetovat kanál alarms.", "commandsResetDesc": "Resetovat Discord kanály.", @@ -335,6 +340,7 @@ "deleteUnreachableDevicesCap": "ODSTRANIT NEDOSAHNUTELNÁ ZAŘÍZENÍ", "despawnTime": "Čas Despawnu", "despawnTimeOfItem": "Čas despawnu pro {item} je {time}.", + "deviceIsAlreadyOnOff": "{device} is already {status}.", "deviceIsCurrentlyOnOff": "{device} is currently {status}.", "deviceWasTurnedOnOff": "{device} was turned {status}.", "disabledCap": "DISABLED", @@ -577,6 +583,7 @@ "reconnectingToServer": "RECONNECTING TO SERVER...", "recycle": "Recycle", "recycleCap": "RECYCLE", + "recycler": "Recycler", "remain": "left", "removePlayerCap": "REMOVE PLAYER", "removeSwitchCap": "REMOVE SWITCH", @@ -593,6 +600,7 @@ "roleSet": "rustplusplus role has been set to {name}.", "rustMonument": "Rust monument", "rustplusOperational": "RUSTPLUS OPERATIONAL.", + "safe-zone-recycler": "Safe Zone Recycler", "samsite": "SAM site", "satelliteDish": "Satellite Dish", "scrap": "Scrap", @@ -629,6 +637,7 @@ "shouldSmartSwitchNotifyInGameWhenChangedFromDiscord": "Should Smart Switches and Smart Switch Groups notify In-Game when they are changed from discord?", "showingBlacklist": "Showing the blacklist.", "showingSubscriptionList": "Showing the subscription list.", + "shredder": "Shredder", "sirenLight": "Siren Light", "six": "Six", "slash": "Slash", @@ -700,6 +709,7 @@ "timeSinceLastSinceDestroyedLong": "{time1} since the last Patrol Helicopter was on the map, {time2} since it last got downed{location}.", "timeSinceLastSinceDestroyedShort": "{time1} since last.\n{time2} since destroyed{location}.", "timeSincePatrolHelicopterWasOnMap": "{time} since the Patrol Helicopter was on the map.", + "timeSinceTravelingVendorWasOnMap": "{time} since the Traveling Vendor was on the map.", "timeSinceWipe": "{time} since wipe.", "timeTill": "Time till {event}", "timeTillDaylight": "{time} before daylight.", @@ -719,6 +729,16 @@ "trackerRemovePlayerDesc": "Odstranit hráče z {tracker}", "trademarkShownBeforeMessage": "{trademark} se zobrazí před zprávami.", "trainYard": "Nádraží", + "travelingVendor": "Traveling Vendor", + "travelingVendorDetectedSetting": "When the Traveling Vendor is detected, send a notification.", + "travelingVendorHaltedAt": "The Traveling Vendor stopped at {location}.", + "travelingVendorHaltedSetting": "When the Traveling Vendor stops moving, send a notification.", + "travelingVendorLeftSetting": "When the Traveling Vendor left the map, send a notification.", + "travelingVendorLocatedAt": "The Traveling Vendor is located at {location}.", + "travelingVendorLeftMap": "The Traveling Vendor just left the map at {location}.", + "travelingVendorNotCurrentlyOnMap": "The Traveling Vendor is not currently on the map.", + "travelingVendorResumedAt": "The Traveling Vendor resumed moving at {location}.", + "travelingVendorSpawnedAt": "The Traveling Vendor spawned at {location}.", "turnOffCap": "VYPNUTO", "turnOnCap": "ZAPNUTO", "turningGroupOnOff": "Měnění skupiny {group} {status}.", diff --git a/src/languages/de.json b/src/languages/de.json index 0b2946b93..3f6e42a9c 100644 --- a/src/languages/de.json +++ b/src/languages/de.json @@ -70,9 +70,12 @@ "cargoLocatedAt": "Frachtschiff hält sich [{location}] auf.", "cargoNotCurrentlyOnMap": "Frachtschiff befindet sich derzeit nicht auf der Karte.", "cargoShipDetectedSetting": "Wenn das Frachtschiff erkannt wird, sende eine Benachrichtigung.", + "cargoShipDockingAtHarbor": "Frachtschiff ist gerade am Hafen bei {location} angelegt", + "cargoShipDockingAtHarborSetting": "Wenn das Frachtschiff an einem Hafen angelegt ist, sende eine Benachrichtigung.", "cargoShipEgressSetting": "Wenn das Frachtschiff in die Austrittsphase eintritt, sende eine Benachrichtigung.", "cargoShipEntersEgressStage": "Das Frachtschiff sollte sich in der Austrittsphase befinden [{location}].", "cargoShipEntersMap": "Das Frachtschiff erscheint auf der Karte [{location}].", + "cargoShipLeftHarbor": "Frachtschiff hat gerade den Hafen bei {location} verlassen", "cargoShipLeftMap": "Frachtschiff hat gerade die Karte verlassen [{location}].", "cargoShipLeftSetting": "Wenn das Frachtschiff die Karte verlassen hat, sende eine Benachrichtigung.", "cargoShipLocated": "Frachtschiff hält sich [{location}] auf.", @@ -157,6 +160,7 @@ "commandSyntaxTimers": "timers", "commandSyntaxTranslateFromTo": "trf", "commandSyntaxTranslateTo": "tr", + "commandSyntaxTravelingVendor": "Händler", "commandSyntaxTwig": "zweig", "commandSyntaxUnmute": "entstumme", "commandSyntaxUnsubscribe": "unsub", @@ -219,6 +223,7 @@ "commandsPlayersStatusDesc": "Suche nach Spielern: online/offline/alle", "commandsRecycleDesc": "Zeige das Ergebnis des Recycelns eines Gegenstands an.", "commandsRecycleQuantityDesc": "Die Menge der zu recycelnden Gegenstände.", + "commandsRecycleRecyclerTypeDesc": "Der Recyclertyp (Recycler, Schredder, Safe-Zone-Recycler).", "commandsResearchDesc": "Zeige die Kosten an einen Gegenstand zu erforschen.", "commandsResetAlarmsDesc": "Alarme-Kanal zurücksetzen.", "commandsResetDesc": "Discord-Kanäle zurücksetzen.", @@ -335,6 +340,7 @@ "deleteUnreachableDevicesCap": "UNERREICHBARE GERÄTE LÖSCHEN", "despawnTime": "Dauer bis zum Despawn", "despawnTimeOfItem": "Dauer bis zum Despawn von {item} ist {time}.", + "deviceIsAlreadyOnOff": "{device} ist bereits {status}geschaltet.", "deviceIsCurrentlyOnOff": "{device} ist derzeit {status}geschaltet.", "deviceWasTurnedOnOff": "{device} wurde {status}geschaltet.", "disabledCap": "DEAKTIVIERT", @@ -577,6 +583,7 @@ "reconnectingToServer": "WIEDERVERBINDEN MIT SERVER...", "recycle": "Recyceln", "recycleCap": "RECYCLE", + "recycler": "Recycler", "remain": "übrig", "removePlayerCap": "SPIELER ENTFERNEN", "removeSwitchCap": "SCHALTER ENTFERNEN", @@ -593,6 +600,7 @@ "roleSet": "{name} wurde als rustplusplus-Rolle festgelegt.", "rustMonument": "Rust Monument", "rustplusOperational": "RUSTPLUS EINSATZBEREIT.", + "safe-zone-recycler": "Safe-Zone-Recycler", "samsite": "FlaRak-Stellung", "satelliteDish": "Parabolantenne", "scrap": "Metallschrott", @@ -629,6 +637,7 @@ "shouldSmartSwitchNotifyInGameWhenChangedFromDiscord": "Sollen intelligente Schalter und intelligente Schalter-Gruppen In-Game benachrichtigen, wenn diese via Discord betätigt werden?", "showingBlacklist": "Anzeigen der Blacklist.", "showingSubscriptionList": "Zeige die Liste der abonnierten Gegenstände an.", + "shredder": "Schredder", "sirenLight": "Alarm-Lampe", "six": "Sechs", "slash": "Schrägstrich", @@ -700,6 +709,7 @@ "timeSinceLastSinceDestroyedLong": "{time1} seit Patrouillenhubschrauber zuletzt auf der Karte war, {time2} seit er zuletzt abgeschossen wurde ({location}).", "timeSinceLastSinceDestroyedShort": "{time1} seit Letztem.\n{time2} seit Zerstörung ({location}).", "timeSincePatrolHelicopterWasOnMap": "{time} seit Patrouillenhubschrauber zuletzt auf der Karte war.", + "timeSinceTravelingVendorWasOnMap": "{time} seit der Reisende Händler auf der Karte war.", "timeSinceWipe": "{time} seit Wipe.", "timeTill": "Dauer bis {event}", "timeTillDaylight": "{time} bis Tagesanbruch.", @@ -719,6 +729,16 @@ "trackerRemovePlayerDesc": "Entferne Spieler von `{tracker}`", "trademarkShownBeforeMessage": "{trademark} wird vor Nachrichten angezeigt.", "trainYard": "Güterbahnhof", + "travelingVendor": "Reisender Händler", + "travelingVendorDetectedSetting": "Wenn der Reisende Händler erkannt wird, sende eine Benachrichtigung.", + "travelingVendorHaltedAt": "Der Reisende Händler hat angehalten [{location}].", + "travelingVendorHaltedSetting": "Wenn der Reisende Händler anhält, sende eine Benachrichtigung.", + "travelingVendorLeftSetting": "Wenn der Reisende Händler die Karte verlassen hat, sende eine Benachrichtigung.", + "travelingVendorLocatedAt": "Der Reisende Händler hält sich bei {location} auf.", + "travelingVendorLeftMap": "Der Reisende Händler hat gerade die Karte verlassen [{location}].", + "travelingVendorNotCurrentlyOnMap": "Der Reisende Händler ist derzeit nicht auf der Karte.", + "travelingVendorResumedAt": "Der Reisende Händler bewegt sich weiter [{location}].", + "travelingVendorSpawnedAt": "Der Reisende Händler ist gespawnt [{location}].", "turnOffCap": "AUSSCHALTEN", "turnOnCap": "EINSCHALTEN", "turningGroupOnOff": "Schalte Gruppe {group} {status}.", diff --git a/src/languages/en.json b/src/languages/en.json index 61289e3f5..bb5fb961d 100644 --- a/src/languages/en.json +++ b/src/languages/en.json @@ -70,9 +70,12 @@ "cargoLocatedAt": "Cargo Ship is located at {location}.", "cargoNotCurrentlyOnMap": "Cargo Ship is not currently on the map.", "cargoShipDetectedSetting": "When Cargo Ship is detected, send a notification.", + "cargoShipDockingAtHarbor": "Cargo ship just docked at the Harbor at {location}", + "cargoShipDockingAtHarborSetting": "When Cargo Ship is docked at a harbor, send a notification.", "cargoShipEgressSetting": "When Cargo Ship enters egress stage, send a notification.", "cargoShipEntersEgressStage": "Cargo Ship should be in the egress stage at {location}.", "cargoShipEntersMap": "Cargo Ship enters the map from {location}.", + "cargoShipLeftHarbor": "Cargo ship just left the Harbor at {location}", "cargoShipLeftMap": "Cargo Ship just left the map at {location}.", "cargoShipLeftSetting": "When Cargo Ship left the map, send a notification.", "cargoShipLocated": "Cargo Ship is located at {location}.", @@ -157,6 +160,7 @@ "commandSyntaxTimers": "timers", "commandSyntaxTranslateFromTo": "trf", "commandSyntaxTranslateTo": "tr", + "commandSyntaxTravelingVendor": "vendor", "commandSyntaxTwig": "twig", "commandSyntaxUnmute": "unmute", "commandSyntaxUnsubscribe": "unsub", @@ -219,6 +223,7 @@ "commandsPlayersStatusDesc": "Search for players that are online/offline/any.", "commandsRecycleDesc": "Display the output of recycling an item.", "commandsRecycleQuantityDesc": "The quantity of items to recycle.", + "commandsRecycleRecyclerTypeDesc": "The recycler type (recycler, shredder, safe-zone-recycler).", "commandsResearchDesc": "Display the cost to research an item.", "commandsResetAlarmsDesc": "Reset alarms channel.", "commandsResetDesc": "Reset Discord channels.", @@ -335,6 +340,7 @@ "deleteUnreachableDevicesCap": "DELETE UNREACHABLE DEVICES", "despawnTime": "Despawn Time", "despawnTimeOfItem": "Despawn time of {item} is {time}.", + "deviceIsAlreadyOnOff": "{device} is already {status}.", "deviceIsCurrentlyOnOff": "{device} is currently {status}.", "deviceWasTurnedOnOff": "{device} was turned {status}.", "disabledCap": "DISABLED", @@ -577,6 +583,7 @@ "reconnectingToServer": "RECONNECTING TO SERVER...", "recycle": "Recycle", "recycleCap": "RECYCLE", + "recycler": "Recycler", "remain": "left", "removePlayerCap": "REMOVE PLAYER", "removeSwitchCap": "REMOVE SWITCH", @@ -593,6 +600,7 @@ "roleSet": "rustplusplus role has been set to {name}.", "rustMonument": "Rust Monument", "rustplusOperational": "RUSTPLUS OPERATIONAL.", + "safe-zone-recycler": "Safe Zone Recycler", "samsite": "SAM site", "satelliteDish": "Satellite Dish", "scrap": "Scrap", @@ -629,6 +637,7 @@ "shouldSmartSwitchNotifyInGameWhenChangedFromDiscord": "Should Smart Switches and Smart Switch Groups notify In-Game when they are changed from discord?", "showingBlacklist": "Showing the blacklist.", "showingSubscriptionList": "Showing the subscription list.", + "shredder": "Shredder", "sirenLight": "Siren Light", "six": "Six", "slash": "Slash", @@ -700,6 +709,7 @@ "timeSinceLastSinceDestroyedLong": "{time1} since the last Patrol Helicopter was on the map, {time2} since it last got downed{location}.", "timeSinceLastSinceDestroyedShort": "{time1} since last.\n{time2} since destroyed{location}.", "timeSincePatrolHelicopterWasOnMap": "{time} since the Patrol Helicopter was on the map.", + "timeSinceTravelingVendorWasOnMap": "{time} since the Traveling Vendor was on the map.", "timeSinceWipe": "{time} since wipe.", "timeTill": "Time till {event}", "timeTillDaylight": "{time} before daylight.", @@ -719,6 +729,16 @@ "trackerRemovePlayerDesc": "Remove Player from {tracker}", "trademarkShownBeforeMessage": "{trademark} will be shown before messages.", "trainYard": "Train Yard", + "travelingVendor": "Traveling Vendor", + "travelingVendorDetectedSetting": "When the Traveling Vendor is detected, send a notification.", + "travelingVendorHaltedAt": "The Traveling Vendor stopped at {location}.", + "travelingVendorHaltedSetting": "When the Traveling Vendor stops moving, send a notification.", + "travelingVendorLeftSetting": "When the Traveling Vendor left the map, send a notification.", + "travelingVendorLocatedAt": "The Traveling Vendor is located at {location}.", + "travelingVendorLeftMap" : "The Traveling Vendor just left the map at {location}.", + "travelingVendorNotCurrentlyOnMap": "The Traveling Vendor is not currently on the map.", + "travelingVendorResumedAt": "The Traveling Vendor resumed moving at {location}.", + "travelingVendorSpawnedAt": "The Traveling Vendor spawned at {location}.", "turnOffCap": "TURN OFF", "turnOnCap": "TURN ON", "turningGroupOnOff": "Turning Group {group} {status}.", diff --git a/src/languages/es.json b/src/languages/es.json index ab6296ac0..662e86e30 100644 --- a/src/languages/es.json +++ b/src/languages/es.json @@ -70,9 +70,12 @@ "cargoLocatedAt": "El cargo está en {location}.", "cargoNotCurrentlyOnMap": "El cargo no está en el mapa.", "cargoShipDetectedSetting": "Cuando se detecte el cargo, envíe una notificación.", + "cargoShipDockingAtHarbor": "Cargo ship just docked at the Harbor at {location}", + "cargoShipDockingAtHarborSetting": "When Cargo Ship is docked at a harbor, send a notification.", "cargoShipEgressSetting": "Cuando el cargo empiece a irse, envíe una notificación.", "cargoShipEntersEgressStage": "El cargo se debería estar yendo del mapa por {location}.", "cargoShipEntersMap": "El cargo está entrando al mapa por {location}.", + "cargoShipLeftHarbor": "Cargo ship just left the Harbor at {location}", "cargoShipLeftMap": "El cargo acaba de salir del mapa por {location}.", "cargoShipLeftSetting": "Cuando el cargo deje el mapa, envíe una notificación.", "cargoShipLocated": "El cargo está en {location}.", @@ -157,6 +160,7 @@ "commandSyntaxTimers": "temporizadores", "commandSyntaxTranslateFromTo": "trf", "commandSyntaxTranslateTo": "tr", + "commandSyntaxTravelingVendor": "vendor", "commandSyntaxTwig": "paja", "commandSyntaxUnmute": "desilenciar", "commandSyntaxUnsubscribe": "unsub", @@ -219,6 +223,7 @@ "commandsPlayersStatusDesc": "Search for players that are online/offline/any.", "commandsRecycleDesc": "Display the output of recycling an item.", "commandsRecycleQuantityDesc": "The quantity of items to recycle.", + "commandsRecycleRecyclerTypeDesc": "The recycler type (recycler, shredder, safe-zone-recycler).", "commandsResearchDesc": "Display the cost to research an item.", "commandsResetAlarmsDesc": "Recrear el canal de alarmas.", "commandsResetDesc": "Recrear los canales de Discord.", @@ -335,6 +340,7 @@ "deleteUnreachableDevicesCap": "ELIMINAR DISPOSITIVOS INALCANZABLES", "despawnTime": "Despawn Time", "despawnTimeOfItem": "Despawn time of {item} is {time}.", + "deviceIsAlreadyOnOff": "{device} is already {status}.", "deviceIsCurrentlyOnOff": "{device} está actualmente {status}.", "deviceWasTurnedOnOff": "{device} fue {status}.", "disabledCap": "DESHABILITADO", @@ -577,6 +583,7 @@ "reconnectingToServer": "RECONECTANDO AL SERVIDOR...", "recycle": "Recycle", "recycleCap": "RECICLADORA", + "recycler": "Recycler", "remain": "izquierda", "removePlayerCap": "ELIMINAR JUGADOR", "removeSwitchCap": "ELIMINAR INTERRUPTOR", @@ -593,6 +600,7 @@ "roleSet": "El rol para rustplusplus se ha establecido a {name}.", "rustMonument": "Monumento de Rust", "rustplusOperational": "RUSTPLUS OPERATIVO.", + "safe-zone-recycler": "Safe Zone Recycler", "samsite": "Torreta SAM", "satelliteDish": "Antena parabólica", "scrap": "Scrap", @@ -629,6 +637,7 @@ "shouldSmartSwitchNotifyInGameWhenChangedFromDiscord": "Should Smart Switches and Smart Switch Groups notify In-Game when they are changed from discord?", "showingBlacklist": "Mostrando la lista negra.", "showingSubscriptionList": "Mostrando la lista.", + "shredder": "Shredder", "sirenLight": "Luz de sirena", "six": "Seis", "slash": "Barra", @@ -700,6 +709,7 @@ "timeSinceLastSinceDestroyedLong": "{time1} since the last Patrol Helicopter was on the map, {time2} since it last got downed{location}.", "timeSinceLastSinceDestroyedShort": "{time1} since last.\n{time2} since destroyed{location}.", "timeSincePatrolHelicopterWasOnMap": "{time} desde que el Helicóptero de Combate estaba en el mapa.", + "timeSinceTravelingVendorWasOnMap": "{time} since the Traveling Vendor was on the map.", "timeSinceWipe": "{time} desde el wipe.", "timeTill": "Tiempo para {event}", "timeTillDaylight": "{time} para el día.", @@ -719,6 +729,16 @@ "trackerRemovePlayerDesc": "Eliminar jugador de {tracker}", "trademarkShownBeforeMessage": "{trademark} se mostrará antes de los mensajes.", "trainYard": "Patio ferroviario", + "travelingVendor": "Traveling Vendor", + "travelingVendorDetectedSetting": "When the Traveling Vendor is detected, send a notification.", + "travelingVendorHaltedAt": "The Traveling Vendor stopped at {location}.", + "travelingVendorHaltedSetting": "When the Traveling Vendor stops moving, send a notification.", + "travelingVendorLeftSetting": "When the Traveling Vendor left the map, send a notification.", + "travelingVendorLocatedAt": "The Traveling Vendor is located at {location}.", + "travelingVendorLeftMap": "The Traveling Vendor just left the map at {location}.", + "travelingVendorNotCurrentlyOnMap": "The Traveling Vendor is not currently on the map.", + "travelingVendorResumedAt": "The Traveling Vendor resumed moving at {location}.", + "travelingVendorSpawnedAt": "The Traveling Vendor spawned at {location}.", "turnOffCap": "APAGAR", "turnOnCap": "ENCENDER", "turningGroupOnOff": "Cambiando el grupo de interruptores {group} a {status}.", diff --git a/src/languages/fr.json b/src/languages/fr.json index cc0bd88d1..ccc19587c 100644 --- a/src/languages/fr.json +++ b/src/languages/fr.json @@ -65,14 +65,17 @@ "buttonValueChange": "Bouton d'Interaction - Vérification d'Id: {id}, Valeur: {value}.", "buy": "achat", "calculated": "Calculé", - "cargoAt": "Cargo à {location}.", - "cargoLeavingMapAt": "Cargo quitte la map à {location}.", - "cargoLocatedAt": "Cargo est localisé à {location}.", + "cargoAt": "Cargo en {location}.", + "cargoLeavingMapAt": "Cargo quitte la map en {location}.", + "cargoLocatedAt": "Cargo est localisé en {location}.", "cargoNotCurrentlyOnMap": "Le cargo n'est actuellement pas sur la map.", "cargoShipDetectedSetting": "Lorsque le Cargo est détecté, envoyez une notification.", + "cargoShipDockingAtHarbor": "Le cargo vient d'accoster au port en {location}", + "cargoShipDockingAtHarborSetting": "Lorsque le cargo est amarré dans un port, envoyez une notification.", "cargoShipEgressSetting": "Lorsque le Cargo entre en phase de sortie, envoyez une notification.", "cargoShipEntersEgressStage": "Le cargo semble être en phase de sortie en {location}.", "cargoShipEntersMap": "Cargo Ship entre dans la map à partir de {location}.", + "cargoShipLeftHarbor": "Un cargo vient de quitter le port en {location}", "cargoShipLeftMap": "Le cargo vient de quitter la map en {location}.", "cargoShipLeftSetting": "Lorsque le cargo a quitté la map, envoyer une notification.", "cargoShipLocated": "Le cargo a été localisé en {location}.", @@ -157,6 +160,7 @@ "commandSyntaxTimers": "minuteurs", "commandSyntaxTranslateFromTo": "trf", "commandSyntaxTranslateTo": "tr", + "commandSyntaxTravelingVendor": "vendeur", "commandSyntaxTwig": "twig", "commandSyntaxUnmute": "réactiver le son", "commandSyntaxUnsubscribe": "unsub", @@ -219,6 +223,7 @@ "commandsPlayersStatusDesc": "Recherchez des joueurs en ligne/hors ligne/n'importe lequel.", "commandsRecycleDesc": "Afficher le résultat du recyclage d’un item.", "commandsRecycleQuantityDesc": "La quantité de l'item à recycler.", + "commandsRecycleRecyclerTypeDesc": "Le type de recycleur (recycleur, broyeur, recycleur en zone sûre).", "commandsResearchDesc": "Affichez le coût de recherche d'un item.", "commandsResetAlarmsDesc": "Réinitialiser le canal des alarmes.", "commandsResetDesc": "Réinitialisez-les channels Discord.", @@ -335,6 +340,7 @@ "deleteUnreachableDevicesCap": "SUPPRIMER LES APPAREILS INACCESSIBLES", "despawnTime": "Temps du Despawn", "despawnTimeOfItem": "Heure du Despawn de {item} est {time}.", + "deviceIsAlreadyOnOff": "{device} est déjà {status}.", "deviceIsCurrentlyOnOff": "{device} est actuellement {status}.", "deviceWasTurnedOnOff": "{device} a été transformé en {status}.", "disabledCap": "DÉSACTIVÉ", @@ -355,7 +361,7 @@ "editCap": "MODIFIER", "editing": "Modification", "editingOf": "Modification De {entity}", - "egressInTime": "Sortie dans {time} à {location}.", + "egressInTime": "Sortie dans {time} en {location}.", "eight": "8", "elevator": "Elevateur", "empty": "Empty", @@ -387,8 +393,8 @@ "heart": "Coeur", "heater": "Chauffage", "heavyScientistCalledSetting": "Lorsque des scientifiques lourds sont appelés sur une grande Oil Rig, envoyez une notification.", - "heavyScientistsCalledLarge": "Des scientifiques lourds ont été appelés sur la grande Oil Rig à {location}.", - "heavyScientistsCalledSmall": "Des scientifiques lourds ont été appelés sur la Petite Oil à {location}.", + "heavyScientistsCalledLarge": "Des scientifiques lourds ont été appelés sur la grande Oil Rig en {location}.", + "heavyScientistsCalledSmall": "Des scientifiques lourds ont été appelés sur la Petite Oil en {location}.", "hideTrademark": "Masquer la marque.", "hoster": "Hébergeur", "hp": "HP", @@ -420,7 +426,7 @@ "isDecaying": "{device} est en dégradation!", "isNoLongerConnected": "{device} n'est plus connecté électriquement !", "item": "Item", - "itemAvailableInVendingMachine": "{items} Vient d'être disponible dans une vending Machine à [{location}].", + "itemAvailableInVendingMachine": "{items} Vient d'être disponible dans une vending Machine en [{location}].", "itemAvailableNotifyInGameSetting": "Lorsqu'un item de la liste d'abonnement devient disponible dans une vending Machine, le prévenir en jeu ?", "junkyard": "Décharge", "justSubscribedToItem": "Vous venez de vous abonner à l'item {name}.", @@ -443,7 +449,7 @@ "linkCap": "LIEN", "location": "Position", "lockedCrateLargeOilRigUnlocked": "La caisse verrouillée de la grande plate-forme pétrolière a été débloquée en {location}.", - "lockedCrateOilRigUnlockedSetting": "La caisse verrouillée de la grande Oil Rig a été débloquée en {location}.", + "lockedCrateOilRigUnlockedSetting": "Lorsqu'une caisse verrouillée sur une plate-forme pétrolière est déverrouillée, envoyez une notification.", "lockedCrateSmallOilRigUnlocked": "La caisse verrouillée de la petite Oil Rig a été débloqué en {location}.", "logDiscordCommand": "Discord Command - Guild: {guild}, Channel: {channel}, User: {user}, Message: {message}.", "logDiscordMessage": "Discord Message - Guild: {guild}, Channel: {channel}, User: {user}, Message: {message}.", @@ -458,10 +464,10 @@ "mapSeed": "Map Seed", "mapSize": "Map Size", "mapWipeDetectedNotifySetting": "Lorsque Map Wipe est détecté, {group} doit-il être averti ?", - "markerAdded": "Le marqueur {name} à [{location}] a été ajouté.", + "markerAdded": "Le marqueur {name} en [{location}] a été ajouté.", "markerDoesNotExist": "Le marqueur {name} n'existe pas.", - "markerLocation": "Le marqueur {name} à [{location}] est à {distance} m de {player} dans la direction {direction}°.", - "markerRemoved": "Le marqueur {name} à [{location}] a été supprimé.", + "markerLocation": "Le marqueur {name} en [{location}] est à {distance} m de {player} dans la direction {direction}°.", + "markerRemoved": "Le marqueur {name} en [{location}] a été supprimé.", "message": "Message", "messageCap": "MESSAGE", "messageDeletedIn30": "Ce message sera supprimé dans 30 secondes.", @@ -542,7 +548,7 @@ "patrolHelicopterEntersMap": "Patrol est entre sur la map depuis {location}.", "patrolHelicopterLeftMap": "Patrol vient de quitter la map à {location}.", "patrolHelicopterLeftSetting": "Lorsque Patrol quitte la map, envoyez une notification.", - "patrolHelicopterLocatedAt": "Patrol est situé à {location}.", + "patrolHelicopterLocatedAt": "Patrol est situé en {location}.", "patrolHelicopterNotCurrentlyOnMap": "Patrol n'est pas actuellement sur la map.", "patrolHelicopterTakenDown": "Patrol à été abattu en {location}.", "percentSign": "%", @@ -577,6 +583,7 @@ "reconnectingToServer": "RECONNEXION AU SERVEUR...", "recycle": "Recycle", "recycleCap": "RECYCLER", + "recycler": "Recycleur", "remain": "restant", "removePlayerCap": "RETIRER LE JOUEUR", "removeSwitchCap": "RETIRER L'INTERRUPTEUR", @@ -593,6 +600,7 @@ "roleSet": "le rôle rustplusplus à été défini sur {name}.", "rustMonument": "Rust Monument", "rustplusOperational": "Rustplusplus OPÉRATIONNEL.", + "safe-zone-recycler": "Recycler zone sûre", "samsite": "Site SAM", "satelliteDish": "Antenne parabolique", "scrap": "Scrap", @@ -629,6 +637,7 @@ "shouldSmartSwitchNotifyInGameWhenChangedFromDiscord": "Les commutateurs intelligents et les groupes de commutateurs intelligents devraient-ils avertir dans le jeu lorsqu'ils sont modifiés depuis Discord ?", "showingBlacklist": "Afficher la blacklist.", "showingSubscriptionList": "Afficher la liste des abonnements.", + "shredder": "Destructeur", "sirenLight": "Lumière de sirène", "six": "6", "slash": "Slash", @@ -700,12 +709,13 @@ "timeSinceLastSinceDestroyedLong": "{time1} Depuis le dernier patrol sur la map, {time2} la dernière fois qu'il est tombé {location}.", "timeSinceLastSinceDestroyedShort": "{time1} depuis le dernier.\\n{time2} depuis la destruction{location}.", "timeSincePatrolHelicopterWasOnMap": "{time} Avant que le patrol soit sur la map.", + "timeSinceTravelingVendorWasOnMap": "{time} depuis que le vendeur ambulant était sur la carte.", "timeSinceWipe": "{time} avant le wipe.", "timeTill": "Temps pour {event}", "timeTillDaylight": "{time} avant le jour.", "timeTillNightfall": "{time} avant la tombée de la nuit.", "timeTillStructureDecay": "{time} avant {type} mur qui perds de la dura.", - "timeUntilUnlocksAt": "{time} avant d'être débloquer à {location}.", + "timeUntilUnlocksAt": "{time} avant d'être débloquer en {location}.", "timer": "Temps: {message}.", "timerIdDoesNotExist": "Temps ID: {id} n'existe pas.", "timerIdInvalid": "Temps ID est invalide.", @@ -719,6 +729,16 @@ "trackerRemovePlayerDesc": "Retirer un joueur depuie le {tracker}", "trademarkShownBeforeMessage": "{trademark} sera affiché avant les messages.", "trainYard": "Gare de Triage", + "travelingVendor": "Vendeur ambulant", + "travelingVendorDetectedSetting": "Lorsque le vendeur ambulant est détecté, envoyez une notification.", + "travelingVendorHaltedAt": "Le vendeur ambulant s'est arrêté en {location}.", + "travelingVendorHaltedSetting": "Lorsque le vendeur ambulant cesse de bouger, envoyez une notification.", + "travelingVendorLeftSetting": "Lorsque le vendeur ambulant quitte la carte, envoyez une notification.", + "travelingVendorLocatedAt": "Le vendeur ambulant est situé en {location}.", + "travelingVendorLeftMap": "Le vendeur ambulant vient de laisser la carte en {location}.", + "travelingVendorNotCurrentlyOnMap": "Le vendeur ambulant n'est actuellement pas sur la carte.", + "travelingVendorResumedAt": "Le vendeur ambulant a repris ses déplacements en {location}.", + "travelingVendorSpawnedAt": "Le vendeur ambulant est apparu en {location}.", "turnOffCap": "ETEINDRE", "turnOnCap": "ALLUMER", "turningGroupOnOff": "Changement de groupe {group} {status}.", diff --git a/src/languages/it.json b/src/languages/it.json index d884f2c0a..8c7c6c331 100644 --- a/src/languages/it.json +++ b/src/languages/it.json @@ -70,9 +70,12 @@ "cargoLocatedAt": "La Nave Cargo si trova a {location}.", "cargoNotCurrentlyOnMap": "Nave Cargo non è attualmente sulla mappa.", "cargoShipDetectedSetting": "Quando la Nave Cargo viene rilevata, invia una notifica.", + "cargoShipDockingAtHarbor": "Cargo ship just docked at the Harbor at {location}", + "cargoShipDockingAtHarborSetting": "When Cargo Ship is docked at a harbor, send a notification.", "cargoShipEgressSetting": "Quando la Nave Cargo inizia la fase di uscita, invia una notifica.", "cargoShipEntersEgressStage": "La Nave Cargo dovrebbe essere in fase di uscita a {location}.", "cargoShipEntersMap": "Nave Cargo entra nella mappa da {location}.", + "cargoShipLeftHarbor": "Cargo ship just left the Harbor at {location}", "cargoShipLeftMap": "La Nave Cargo ha appena lasciato la mappa a {location}.", "cargoShipLeftSetting": "Quando la Nave Cargo lascia la mappa, invia una notifica.", "cargoShipLocated": "Nave Cargo si trova a {location}.", @@ -157,6 +160,7 @@ "commandSyntaxTimers": "timers", "commandSyntaxTranslateFromTo": "trf", "commandSyntaxTranslateTo": "tr", + "commandSyntaxTravelingVendor": "vendor", "commandSyntaxTwig": "ramo", "commandSyntaxUnmute": "smuta", "commandSyntaxUnsubscribe": "disiscriviti", @@ -219,6 +223,7 @@ "commandsPlayersStatusDesc": "Cerca giocatori che sono online/offline/qualsiasi.", "commandsRecycleDesc": "Mostra il risultato del riciclaggio di un oggetto.", "commandsRecycleQuantityDesc": "La quantità di articoli da riciclare.", + "commandsRecycleRecyclerTypeDesc": "The recycler type (recycler, shredder, safe-zone-recycler).", "commandsResearchDesc": "Mostra il costo per cercare un oggetto.", "commandsResetAlarmsDesc": "Resetta il canale delle sveglie.", "commandsResetDesc": "Resetta i canali di Discord.", @@ -335,6 +340,7 @@ "deleteUnreachableDevicesCap": "DELETE UNREACHABLE DEVICES", "despawnTime": "Despawn Time", "despawnTimeOfItem": "Despawn time of {item} is {time}.", + "deviceIsAlreadyOnOff": "{device} is already {status}.", "deviceIsCurrentlyOnOff": "{device} è attualmente {status}.", "deviceWasTurnedOnOff": "{device} è stato messo {status}.", "disabledCap": "DISABILITATO", @@ -577,6 +583,7 @@ "reconnectingToServer": "RICONNESSIONE AL SERVER IN CORSO...", "recycle": "Recycle", "recycleCap": "RICICLA", + "recycler": "Recycler", "remain": "rimasto", "removePlayerCap": "RIMUOVI GIOCATORE", "removeSwitchCap": "RIMUOVI INTERRUTTORE", @@ -593,6 +600,7 @@ "roleSet": "il ruolo rustplusplus è stato impostato su {name}.", "rustMonument": "Monumento di Rust", "rustplusOperational": "RUSTPLUS OPERATIVO.", + "safe-zone-recycler": "Safe Zone Recycler", "samsite": "Torretta SAM", "satelliteDish": "Parabola Satellitare", "scrap": "Scarti", @@ -629,6 +637,7 @@ "shouldSmartSwitchNotifyInGameWhenChangedFromDiscord": "Should Smart Switches and Smart Switch Groups notify In-Game when they are changed from discord?", "showingBlacklist": "Mostrando la blacklist.", "showingSubscriptionList": "Mostrando l'elenco di iscrizioni.", + "shredder": "Shredder", "sirenLight": "Luce Sirena", "six": "Sei", "slash": "Barra", @@ -700,6 +709,7 @@ "timeSinceLastSinceDestroyedLong": "{time1} since the last Patrol Helicopter was on the map, {time2} since it last got downed{location}.", "timeSinceLastSinceDestroyedShort": "{time1} since last.\n{time2} since destroyed{location}.", "timeSincePatrolHelicopterWasOnMap": "{time} dal momento in cui l'Elicottero di Pattuglia era in mappa.", + "timeSinceTravelingVendorWasOnMap": "{time} since the Traveling Vendor was on the map.", "timeSinceWipe": "{time} dal momento del wipe.", "timeTill": "Tempo fino a {event}", "timeTillDaylight": "{time} prima dell'alba.", @@ -719,6 +729,16 @@ "trackerRemovePlayerDesc": "Rimuovi giocatore da {tracker}", "trademarkShownBeforeMessage": "{trademark} sarà mostrato prima dei messaggi.", "trainYard": "Cantiere dei Treni", + "travelingVendor": "Traveling Vendor", + "travelingVendorDetectedSetting": "When the Traveling Vendor is detected, send a notification.", + "travelingVendorHaltedAt": "The Traveling Vendor stopped at {location}.", + "travelingVendorHaltedSetting": "When the Traveling Vendor stops moving, send a notification.", + "travelingVendorLeftSetting": "When the Traveling Vendor left the map, send a notification.", + "travelingVendorLocatedAt": "The Traveling Vendor is located at {location}.", + "travelingVendorLeftMap": "The Traveling Vendor just left the map at {location}.", + "travelingVendorNotCurrentlyOnMap": "The Traveling Vendor is not currently on the map.", + "travelingVendorResumedAt": "The Traveling Vendor resumed moving at {location}.", + "travelingVendorSpawnedAt": "The Traveling Vendor spawned at {location}.", "turnOffCap": "SPEGNI", "turnOnCap": "ACCENDI", "turningGroupOnOff": "Impostando Gruppo {group} {status}.", diff --git a/src/languages/ko.json b/src/languages/ko.json index 21f7bd736..8fcb75144 100644 --- a/src/languages/ko.json +++ b/src/languages/ko.json @@ -70,9 +70,12 @@ "cargoLocatedAt": "화물선은 지금 {location} 에 있습니다.", "cargoNotCurrentlyOnMap": "화물선이 지도에 나타나지 않았습니다.", "cargoShipDetectedSetting": "화물선이 탐지되면 알림을 보내줍니다.", + "cargoShipDockingAtHarbor": "Cargo ship just docked at the Harbor at {location}", + "cargoShipDockingAtHarborSetting": "When Cargo Ship is docked at a harbor, send a notification.", "cargoShipEgressSetting": "화물선이 탈출단계일때 알림을 보내줍니다.", "cargoShipEntersEgressStage": "화물선은 {location}에서 떠나고 있습니다.", "cargoShipEntersMap": "화물선이 {location}에서 진입합니다.", + "cargoShipLeftHarbor": "Cargo ship just left the Harbor at {location}", "cargoShipLeftMap": "화물선이 방금 {location}에서 떠났습니다.", "cargoShipLeftSetting": "화물선이 지도에서 떠났을때 알림을 보내줍니다.", "cargoShipLocated": "화물선은 지금 {location}에 있습니다.", @@ -157,6 +160,7 @@ "commandSyntaxTimers": "timers", "commandSyntaxTranslateFromTo": "trf", "commandSyntaxTranslateTo": "tr", + "commandSyntaxTravelingVendor": "vendor", "commandSyntaxTwig": "기초 토대", "commandSyntaxUnmute": "unmute", "commandSyntaxUnsubscribe": "unsub", @@ -219,6 +223,7 @@ "commandsPlayersStatusDesc": "Search for players that are online/offline/any.", "commandsRecycleDesc": "Display the output of recycling an item.", "commandsRecycleQuantityDesc": "The quantity of items to recycle.", + "commandsRecycleRecyclerTypeDesc": "The recycler type (recycler, shredder, safe-zone-recycler).", "commandsResearchDesc": "Display the cost to research an item.", "commandsResetAlarmsDesc": "알람 채널을 재설정 합니다.", "commandsResetDesc": "디스코드 채널을 재설정 합니다.", @@ -335,6 +340,7 @@ "deleteUnreachableDevicesCap": "DELETE UNREACHABLE DEVICES", "despawnTime": "Despawn Time", "despawnTimeOfItem": "Despawn time of {item} is {time}.", + "deviceIsAlreadyOnOff": "{device} is already {status}.", "deviceIsCurrentlyOnOff": "{device} 은(는) 현재 {status} 입니다.", "deviceWasTurnedOnOff": "{device} 이(가) {status} 으로 설정되었습니다.", "disabledCap": "비활성화", @@ -577,6 +583,7 @@ "reconnectingToServer": "서버에 다시 연결하는 중...", "recycle": "Recycle", "recycleCap": "재활용", + "recycler": "Recycler", "remain": "레프트", "removePlayerCap": "플레이어 제거", "removeSwitchCap": "스위치 제거", @@ -593,6 +600,7 @@ "roleSet": "rustPlusPlus 사용권한을 가진 역할이 {name} 으로 설정되었습니다.", "rustMonument": "러스트 파밍지역", "rustplusOperational": "RUSTPLUS 작동.", + "safe-zone-recycler": "Safe Zone Recycler", "samsite": "지대공 미사일 발사대", "satelliteDish": "위성 안테나", "scrap": "Scrap", @@ -629,6 +637,7 @@ "shouldSmartSwitchNotifyInGameWhenChangedFromDiscord": "Should Smart Switches and Smart Switch Groups notify In-Game when they are changed from discord?", "showingBlacklist": "Showing the blacklist.", "showingSubscriptionList": "구독 목록을 표시합니다.", + "shredder": "Shredder", "sirenLight": "사이렌 조명", "six": "6", "slash": "빗금", @@ -700,6 +709,7 @@ "timeSinceLastSinceDestroyedLong": "{time1} since the last Patrol Helicopter was on the map, {time2} since it last got downed{location}.", "timeSinceLastSinceDestroyedShort": "{time1} since last.\n{time2} since destroyed{location}.", "timeSincePatrolHelicopterWasOnMap": "공격 헬기가 지도에 표시된 이후 {time} 지났습니다.", + "timeSinceTravelingVendorWasOnMap": "{time} since the Traveling Vendor was on the map.", "timeSinceWipe": "초기화 후 {time} 지났습니다.", "timeTill": "{event}:남은시간", "timeTillDaylight": "해가 뜨기 전까지 {time} 남았습니다.", @@ -719,6 +729,16 @@ "trackerRemovePlayerDesc": "{tracker} 에서 플레이어 제거", "trademarkShownBeforeMessage": "메시지 앞에 {trademark}가 표시됩니다.", "trainYard": "기차 차고지", + "travelingVendor": "Traveling Vendor", + "travelingVendorDetectedSetting": "When the Traveling Vendor is detected, send a notification.", + "travelingVendorHaltedAt": "The Traveling Vendor stopped at {location}.", + "travelingVendorHaltedSetting": "When the Traveling Vendor stops moving, send a notification.", + "travelingVendorLeftSetting": "When the Traveling Vendor left the map, send a notification.", + "travelingVendorLocatedAt": "The Traveling Vendor is located at {location}.", + "travelingVendorLeftMap": "The Traveling Vendor just left the map at {location}.", + "travelingVendorNotCurrentlyOnMap": "The Traveling Vendor is not currently on the map.", + "travelingVendorResumedAt": "The Traveling Vendor resumed moving at {location}.", + "travelingVendorSpawnedAt": "The Traveling Vendor spawned at {location}.", "turnOffCap": "끄기", "turnOnCap": "켜기", "turningGroupOnOff": "스위치 {group} {status} 전환", diff --git a/src/languages/pl.json b/src/languages/pl.json index 5dbfeb52b..d23121c4c 100644 --- a/src/languages/pl.json +++ b/src/languages/pl.json @@ -8,32 +8,32 @@ "afkCap": "Zaraz Wracam", "airfield": "Lotnisko", "alarmHaveNotBeenTriggeredYet": "Alarm {alarm} nie został jeszcze aktywowany.", - "alias": "Alias", - "aliasAlreadyExist": "Alias already exist.", - "aliasIndexCouldNotBeFound": "Alias index could not be found.", - "aliasWasAdded": "Alias was added.", - "aliasWasRemoved": "Alias was removed.", - "aliases": "Aliases", + "alias": "Pseudonim", + "aliasAlreadyExist": "Pseudonim już jest w użyciu.", + "aliasIndexCouldNotBeFound": "Pseudonim nie został znaleziony.", + "aliasWasAdded": "Dodano pseudonizm.", + "aliasWasRemoved": "Usunięto pseudonizm.", + "aliases": "Pseudonimy", "all": "wszystko", "allTeammatesAreDead": "Wszyscy twoi koledzy z drużyny nie żyją.", "alreadySubscribedToItem": "Subskrybowano już przedmiot {name}.", "ampersand": "Ampersand", "andMorePlayers": "... i {number} więcej graczy.", - "any": "Any", + "any": "Dowolny", "apostrophe": "Apostrophe", "arcticResearchBase": "Arktyczna baza badawcza", "asterisk": "Asterisk", - "asteriskCctvDesc": "*'s means that you need a numerical code that is different for every map", + "asteriskCctvDesc": "* oznacza, że potrzebujesz innego kodu numerycznego dla każdej mapy", "atLocation": "At {location}.", "atSign": "Na znaku", "autoDayCap": "AUTOMATYCZNIE DZIEŃ", "autoNightCap": "AUTO-NOC", - "autoOffAnyOnlineCap": "AUTO-OFF-ANY-ONLINE", - "autoOffCap": "AUTO-OFF", - "autoOffProximityCap": "AUTO-OFF-PROXIMITY", - "autoOnAnyOnlineCap": "AUTO-ON-ANY-ONLINE", - "autoOnCap": "AUTO-ON", - "autoOnProximityCap": "AUTO-ON-PROXIMITY", + "autoOffAnyOnlineCap": "WYŁĄCZ-WSZYSTKIE-ONLINE", + "autoOffCap": "AUTOMATYCZNE-WYŁĄCZENIE", + "autoOffProximityCap": "AUTOMATYCZNE-WYŁĄCZENIE-DYSTANSOWE", + "autoOnAnyOnlineCap": "WŁĄCZ-WSZYSTKIE-ONLINE", + "autoOnCap": "AUTOMATYCZNE-WŁĄCZENIE", + "autoOnProximityCap": "AUOTMATYCZNE-WŁĄCZENIE-DYSTANSOWE", "autoSettingCap": "USTAWIENIA AUTOMATYCZNE: ", "automaticallyTurnBackOnOff": " Automatycznie przywrócono {status} w {time}.", "automaticallyTurningBackOnOff": "Automatycznie przywrócono {device} w {status}.", @@ -41,38 +41,41 @@ "badGateway": "Błędna brama: {error}", "banditCamp": "Obóz Bandytów", "baseIsUnderAttack": "Twoja baza jest atakowana!", - "battlemetricsApiRequestFailed": "Battlemetrics API Request Failed: {api_call}.", + "battlemetricsApiRequestFailed": "Zapytyanie API do Battlemetrics nieudane: {api_call}.", "battlemetricsCap": "Battlemetrics", - "battlemetricsFailedToUpdate": "Battlemetrics Server {server} failed to update.", - "battlemetricsGlobalLoginCap": "GLOBAL LOGIN", - "battlemetricsGlobalLogoutCap": "GLOBAL LOGOUT", - "battlemetricsGlobalNameChangesCap": "GLOBAL NAME CHANGES", + "battlemetricsFailedToUpdate": "Aktualizacja serwera Battlemetrics {server} zakończona niepowodzeniem.", + "battlemetricsGlobalLoginCap": "LOGOWANIE GLOBALNE", + "battlemetricsGlobalLogoutCap": "WYLOGOWANIE GLOBALNE", + "battlemetricsGlobalNameChangesCap": "GLOBALNE ZMIANY NAZWY", "battlemetricsId": "BattlemetricsID", - "battlemetricsIdAndNameMissing": "Battlemetrics instance is missing id and name.", - "battlemetricsInstanceCouldNotBeFound": "Battlemetrics Instance for {id} could not be found.", - "battlemetricsOnlinePlayers": "Battlemetrics Online Players", - "battlemetricsPlayersLogin": "Battlemetrics Players Login", - "battlemetricsPlayersLogout": "Battlemetrics Players Logout", - "battlemetricsPlayersNameChanged": "Battlemetrics Players Name Changed", - "battlemetricsServerNameChanged": "Battlemetrics Server Name Changed", - "battlemetricsServerNameChangesCap": "SERVER NAME CHANGES", - "battlemetricsTrackerNameChangesCap": "TRACKER NAME CHANGES", - "battlemetricsTrackerPlayerNameChanged": "Battlemetrics Tracker Player Name Changed", - "blacklist": "Blacklist", + "battlemetricsIdAndNameMissing": "Instacja Battlemetrics posiada brakujące id oraz nazwę.", + "battlemetricsInstanceCouldNotBeFound": "Instancja Battlemetrics dla id {id} nie mogła zostać znaleziona.", + "battlemetricsOnlinePlayers": "Gracze online Battlemetrics", + "battlemetricsPlayersLogin": "Logowanie Battlemetrics", + "battlemetricsPlayersLogout": "Wylogowanie Battlemetrics", + "battlemetricsPlayersNameChanged": "Battlemetrics gracz zmienił nazwę", + "battlemetricsServerNameChanged": "Battlemetrics serwer zmienił nazwę", + "battlemetricsServerNameChangesCap": "ZMIANA NAZWY SERWERA", + "battlemetricsTrackerNameChangesCap": "ZMIANA NAZWY TRACKERA", + "battlemetricsTrackerPlayerNameChanged": "Battlemetrics Tracker zmiana nazwy gracza", + "blacklist": "Czarna lista", "boomBox": "Boom Box", "bot": "bot", "broadcaster": "Broadcaster", - "buttonValueChange": "Button Interaction - VerifyId: {id}, Value: {value}.", + "buttonValueChange": "Interakcja przyciskiem - VerifyId: {id}, Value: {value}.", "buy": "kup", - "calculated": "Calculated", + "calculated": "Obliczone", "cargoAt": "W {location}.", "cargoLeavingMapAt": "Statek towarowy opuszcza mapę na {location}.", "cargoLocatedAt": "Statek towarowy znajduje się w {location}.", "cargoNotCurrentlyOnMap": "Statek towarowy nie jest obecnie na mapie.", "cargoShipDetectedSetting": "W przypadku wykrycia statku towarowego, wyślij powiadomienie.", + "cargoShipDockingAtHarbor": "Cargo ship just docked at the Harbor at {location}", + "cargoShipDockingAtHarborSetting": "When Cargo Ship is docked at a harbor, send a notification.", "cargoShipEgressSetting": "Gdy statek towarowy wchodzi na etap wyjścia, wyślij powiadomienie.", "cargoShipEntersEgressStage": "Cargo Ship should be in the egress stage at {location}.", "cargoShipEntersMap": "Cargo Ship enters the map from {location}.", + "cargoShipLeftHarbor": "Statek towarowy właśnie opuścił port w {location}", "cargoShipLeftMap": "Cargo Ship just left the map at {location}.", "cargoShipLeftSetting": "When Cargo Ship left the map, send a notification.", "cargoShipLocated": "Cargo Ship is located at {location}.", @@ -113,12 +116,12 @@ "commandSyntaxChinook": "chinook", "commandSyntaxConnection": "połączenie", "commandSyntaxConnections": "połączenia", - "commandSyntaxCraft": "craft", + "commandSyntaxCraft": "stwórz", "commandSyntaxDeath": "death", "commandSyntaxDeaths": "deaths", "commandSyntaxDecay": "decay", "commandSyntaxDespawn": "despawn", - "commandSyntaxEvents": "events", + "commandSyntaxEvents": "wydarzenia", "commandSyntaxHeli": "heli", "commandSyntaxLanguage": "język", "commandSyntaxLarge": "large", @@ -141,7 +144,7 @@ "commandSyntaxProx": "prox", "commandSyntaxRecycle": "recycle", "commandSyntaxRemove": "usuń", - "commandSyntaxResearch": "research", + "commandSyntaxResearch": "badanie", "commandSyntaxSearch": "wyszukaj", "commandSyntaxSend": "wyślij", "commandSyntaxSmall": "mały", @@ -157,27 +160,28 @@ "commandSyntaxTimers": "timers", "commandSyntaxTranslateFromTo": "trf", "commandSyntaxTranslateTo": "tr", - "commandSyntaxTwig": "twig", + "commandSyntaxTravelingVendor": "vendor", + "commandSyntaxTwig": "patyki", "commandSyntaxUnmute": "wyłącz wyciszenie", "commandSyntaxUnsubscribe": "unsub", "commandSyntaxUpkeep": "Utrzymanie", - "commandSyntaxUptime": "uptime", + "commandSyntaxUptime": "utrzymanie", "commandSyntaxWipe": "wipe", "commandSyntaxWood": "drewno", "commandsAlarmDesc": "Operacje na inteligentnych alarmach.", "commandsAlarmEditDesc": "Edit the properties of a Smart Alarm.", "commandsAlarmEditIdDesc": "The ID of the Smart Alarm.", "commandsAlarmEditImageDesc": "Set the image that best represent the Smart Alarm.", - "commandsAliasAddAliasDesc": "The alias to use.", - "commandsAliasAddDesc": "Add an alias.", - "commandsAliasAddValueDesc": "The command/sequence of characters.", - "commandsAliasDesc": "Create an alias for a command/sequence of characters.", - "commandsAliasRemoveDesc": "Remove an alias.", - "commandsAliasRemoveIndexDesc": "The index of the alias to remove.", + "commandsAliasAddAliasDesc": "Pseudonim do użycia.", + "commandsAliasAddDesc": "Dodaj pseudonim.", + "commandsAliasAddValueDesc": "Komenda/sekwencja znaków.", + "commandsAliasDesc": "Stwórz pseudonim dla komendy/sekwencji znaków.", + "commandsAliasRemoveDesc": "Usuń pseudonim.", + "commandsAliasRemoveIndexDesc": "Numer pseudonimu do usunięcia.", "commandsAliasShowDesc": "Pokaż wszystkie zarejestrowane aliasy.", "commandsBlacklistAddDesc": "Dodaje użytkownika na czarną listę.", - "commandsBlacklistDesc": "Blacklist a user from using the bot.", - "commandsBlacklistDiscordUserDesc": "The discord user.", + "commandsBlacklistDesc": "Zablokuj używanie bota przez użytkownika.", + "commandsBlacklistDiscordUserDesc": "Użytkownik Discorda.", "commandsBlacklistRemoveDesc": "Remove user from the blacklist.", "commandsBlacklistShowDesc": "Show blacklisted users.", "commandsBlacklistSteamidDesc": "The steamid of the user.", @@ -219,6 +223,7 @@ "commandsPlayersStatusDesc": "Search for players that are online/offline/any.", "commandsRecycleDesc": "Display the output of recycling an item.", "commandsRecycleQuantityDesc": "The quantity of items to recycle.", + "commandsRecycleRecyclerTypeDesc": "The recycler type (recycler, shredder, safe-zone-recycler).", "commandsResearchDesc": "Display the cost to research an item.", "commandsResetAlarmsDesc": "Reset alarms channel.", "commandsResetDesc": "Reset Discord channels.", @@ -335,6 +340,7 @@ "deleteUnreachableDevicesCap": "DELETE UNREACHABLE DEVICES", "despawnTime": "Despawn Time", "despawnTimeOfItem": "Despawn time of {item} is {time}.", + "deviceIsAlreadyOnOff": "{device} is already {status}.", "deviceIsCurrentlyOnOff": "{device} is currently {status}.", "deviceWasTurnedOnOff": "{device} was turned {status}.", "disabledCap": "DISABLED", @@ -577,6 +583,7 @@ "reconnectingToServer": "RECONNECTING TO SERVER...", "recycle": "Recycle", "recycleCap": "RECYCLE", + "recycler": "Recycler", "remain": "left", "removePlayerCap": "REMOVE PLAYER", "removeSwitchCap": "REMOVE SWITCH", @@ -593,6 +600,7 @@ "roleSet": "rustplusplus role has been set to {name}.", "rustMonument": "Monument Rust", "rustplusOperational": "RUSTPLUS OPERATIONAL.", + "safe-zone-recycler": "Safe Zone Recycler", "samsite": "SAM site", "satelliteDish": "Satellite Dish", "scrap": "Scrap", @@ -629,6 +637,7 @@ "shouldSmartSwitchNotifyInGameWhenChangedFromDiscord": "Should Smart Switches and Smart Switch Groups notify In-Game when they are changed from discord?", "showingBlacklist": "Showing the blacklist.", "showingSubscriptionList": "Showing the subscription list.", + "shredder": "Shredder", "sirenLight": "Siren Light", "six": "Six", "slash": "Slash", @@ -700,6 +709,7 @@ "timeSinceLastSinceDestroyedLong": "{time1} since the last Patrol Helicopter was on the map, {time2} since it last got downed{location}.", "timeSinceLastSinceDestroyedShort": "{time1} since last.\n{time2} since destroyed{location}.", "timeSincePatrolHelicopterWasOnMap": "{time} since the Patrol Helicopter was on the map.", + "timeSinceTravelingVendorWasOnMap": "{time} since the Traveling Vendor was on the map.", "timeSinceWipe": "{time} since wipe.", "timeTill": "Time till {event}", "timeTillDaylight": "{time} before daylight.", @@ -719,6 +729,16 @@ "trackerRemovePlayerDesc": "Usuń Gracza z {tracker}", "trademarkShownBeforeMessage": "{trademark} will be shown before messages.", "trainYard": "Zajezdnia kolejowa", + "travelingVendor": "Traveling Vendor", + "travelingVendorDetectedSetting": "When the Traveling Vendor is detected, send a notification.", + "travelingVendorHaltedAt": "The Traveling Vendor stopped at {location}.", + "travelingVendorHaltedSetting": "When the Traveling Vendor stops moving, send a notification.", + "travelingVendorLeftSetting": "When the Traveling Vendor left the map, send a notification.", + "travelingVendorLocatedAt": "The Traveling Vendor is located at {location}.", + "travelingVendorLeftMap": "The Traveling Vendor just left the map at {location}.", + "travelingVendorNotCurrentlyOnMap": "The Traveling Vendor is not currently on the map.", + "travelingVendorResumedAt": "The Traveling Vendor resumed moving at {location}.", + "travelingVendorSpawnedAt": "The Traveling Vendor spawned at {location}.", "turnOffCap": "WYŁĄCZ", "turnOnCap": "WŁĄCZ", "turningGroupOnOff": "Przełączanie grupy {group} {status}.", diff --git a/src/languages/pt.json b/src/languages/pt.json new file mode 100644 index 000000000..3598ffffa --- /dev/null +++ b/src/languages/pt.json @@ -0,0 +1,790 @@ +{ + "24HoursInGameTimePassed": "Já se passaram 24 horas no tempo do jogo.", + "abandonedCabins": "Cabines Abandonadas", + "abandonedMilitaryBase": "Base Militar Abandonada", + "abandonedSupermarket": "Supermercado Abandonado", + "addPlayerCap": "Adicionar Jogador", + "addSwitchCap": "Adicionar Interruptor", + "afkCap": "AFK", + "airfield": "Aeródromo", + "alarmHaveNotBeenTriggeredYet": "O alarme {alarm} ainda não foi acionado.", + "alias": "Alias", + "aliasAlreadyExist": "O alias já existe.", + "aliasIndexCouldNotBeFound": "Índice de alias não pôde ser encontrado.", + "aliasWasAdded": "O alias foi adicionado.", + "aliasWasRemoved": "O alias foi removido.", + "aliases": "Aliases", + "all": "todas", + "allTeammatesAreDead": "Todos os seus colegas de equipa estão mortos.", + "alreadySubscribedToItem": "Já subscrito ao item {name}.", + "ampersand": "E comercial", + "andMorePlayers": "... e mais {number} jogadores.", + "any": "Qualquer", + "apostrophe": "Apóstrofo", + "arcticResearchBase": "Base de Investigação do Árctico", + "asterisk": "Asterisco", + "asteriskCctvDesc": "*'s significa que você precisa de um código numérico que é diferente para cada mapa", + "atLocation": "Em {location}.", + "atSign": "Ao Sinal", + "autoDayCap": "AUTO-DIA", + "autoNightCap": "AUTO-NOITE", + "autoOffAnyOnlineCap": "AUTO-DESLIGAR-ONLINE", + "autoOffCap": "AUTO-DESLIGAR", + "autoOffProximityCap": "AUTO-DESLIGAR-PROXIMIDADE", + "autoOnAnyOnlineCap": "AUTO-LIGAR-ONLINE", + "autoOnCap": "AUTO-LIGAR", + "autoOnProximityCap": "AUTO-LIGAR-PROXIMIDADE", + "autoSettingCap": "DEFINIÇÕES AUTOMATICAS: ", + "automaticallyTurnBackOnOff": " Automaticamente voltar a {status} em {time}.", + "automaticallyTurningBackOnOff": "Voltar {device} automaticamente para {status}.", + "autoturret": "Torreta Automática", + "badGateway": "Gateway inválido: {error}", + "banditCamp": "Acampamento de Bandidos", + "baseIsUnderAttack": "A sua base está a ser atacada!", + "battlemetricsApiRequestFailed": "Solicitação da API Battlemetrics falhou: {api_call}.", + "battlemetricsCap": "BATTLEMETRICS", + "battlemetricsFailedToUpdate": "Falha a atualizar o servidor Battlemetrics {server}.", + "battlemetricsGlobalLoginCap": "LOGIN GLOBAL", + "battlemetricsGlobalLogoutCap": "LOGOUT GLOBAL", + "battlemetricsGlobalNameChangesCap": "MUDANÇAS DE NOMES GLOBAIS", + "battlemetricsId": "BattlemetricsID", + "battlemetricsIdAndNameMissing": "Está a faltar o ID e Nome no pedido da Battlemetrics.", + "battlemetricsInstanceCouldNotBeFound": "O pedido da Battlemetrics para o {id} não foi encontrado.", + "battlemetricsOnlinePlayers": "Jogadores Online no Battlemetrics", + "battlemetricsPlayersLogin": "Login de Jogadores Battlemetrics", + "battlemetricsPlayersLogout": "Logout de Jogadores Battlemetrics", + "battlemetricsPlayersNameChanged": "Mudança de nome de Jogadores Battlemetrics", + "battlemetricsServerNameChanged": "Mudança de nome de Servidor Battlemetrics", + "battlemetricsServerNameChangesCap": "MUDANÇA DE NOME DO SERVIDOR", + "battlemetricsTrackerNameChangesCap": "MUDANÇA DE NOME DO RASTREADOR", + "battlemetricsTrackerPlayerNameChanged": "Mudança de nome do Rastreador de Jogadores Battlemetrics", + "blacklist": "Lista Negra", + "boomBox": "Caixa de Som", + "bot": "bot", + "broadcaster": "Transmissor", + "buttonValueChange": "Interação de Botão - VerifyId: {id}, Valor: {value}.", + "buy": "comprar", + "calculated": "Calculado", + "cargoAt": "Em {location}.", + "cargoLeavingMapAt": "O Navio de Carga vai sair do mapa em {location}.", + "cargoLocatedAt": "O Navio de Carga está em {location}.", + "cargoNotCurrentlyOnMap": "O Navio de Carga não está no mapa.", + "cargoShipDetectedSetting": "Quando o Navio de Carga for detetado, envia uma notificação.", + "cargoShipDockingAtHarbor": "O Navio de Carga acabou de ancorar no Cais em {location}", + "cargoShipDockingAtHarborSetting": "Quando o Navio de Carga estiver ancorado no Cais, envia uma notificação.", + "cargoShipEgressSetting": "Quando o Navio de Carga entrar em estágio de saída, envia uma notificação.", + "cargoShipEntersEgressStage": "O Navio de Carga deve estar no estágio de saída em {location}.", + "cargoShipEntersMap": "O Navio de Carga entrou no mapa em {location}.", + "cargoShipLeftHarbor": "O Navio de Carga acabou de desancorar do Cais em {location}", + "cargoShipLeftMap": "O Navio de Carga saiu do mapa em {location}.", + "cargoShipLeftSetting": "Quando o Navio de Carga sair do mapa, envia uma notificação.", + "cargoShipLocated": "O Navio de Carga está em {location}.", + "cargoship": "Navio de Carga", + "ceilingLight": "Luz de Teto", + "channelNameActivity": "atividade", + "channelNameAlarms": "alarmes", + "channelNameCommands": "comandos", + "channelNameEvents": "eventos", + "channelNameInformation": "informação", + "channelNameServers": "servidores", + "channelNameSettings": "definições", + "channelNameStorageMonitors": "monitoresArmazenamento", + "channelNameSwitchGroups": "gruposInterruptores", + "channelNameSwitches": "interruptores", + "channelNameTeamchat": "ChatDeEquipa", + "channelNameTrackers": "rastreadores", + "chinook47": "Chinook 47", + "chinook47DetectedSetting": "Quando um Chinook 47 entra no mapa, envia uma notificação.", + "chinook47EntersMap": "O Chinook 47 entra no mapa em {location} para largar uma Caixa Bloqueada.", + "chinook47LeftMap": "O Chinook 47 saiu do mapa em {location}.", + "chinook47Located": "O Chinook 47 está em {location}.", + "chinook47NotOnMap": "O Chinook 47 não está no mapa.", + "christmasLights": "Luzes de Natal", + "circumflex": "Circunflexo", + "clanTag": "Tag do Clã", + "codes": "Códigos", + "colon": "Dois pontos", + "comma": "Vírgula", + "commandCap": "COMANDO", + "commandDelaySetting": "Deverá haver um atraso no comando? Quanto tempo?", + "commandNotPossibleDiscord": "Comando não é possível através do Discord.", + "commandSyntaxAdd": "adicionar", + "commandSyntaxAfk": "afk", + "commandSyntaxAlive": "vivo", + "commandSyntaxArmored": "blindado", + "commandSyntaxCargo": "cargo", + "commandSyntaxChinook": "chinook", + "commandSyntaxConnection": "conexão", + "commandSyntaxConnections": "conexões", + "commandSyntaxCraft": "criar", + "commandSyntaxDeath": "morte", + "commandSyntaxDeaths": "mortes", + "commandSyntaxDecay": "decay", + "commandSyntaxDespawn": "despawn", + "commandSyntaxEvents": "eventos", + "commandSyntaxHeli": "heli", + "commandSyntaxLanguage": "idioma", + "commandSyntaxLarge": "grande", + "commandSyntaxLeader": "líder", + "commandSyntaxList": "lista", + "commandSyntaxMarker": "marcador", + "commandSyntaxMarkers": "marcadores", + "commandSyntaxMarket": "mercado", + "commandSyntaxMetal": "metal", + "commandSyntaxMute": "silenciar", + "commandSyntaxNote": "nota", + "commandSyntaxNotes": "notas", + "commandSyntaxOff": "desligado", + "commandSyntaxOffline": "offline", + "commandSyntaxOn": "ligado", + "commandSyntaxOnline": "online", + "commandSyntaxPlayer": "jogador", + "commandSyntaxPlayers": "jogadores", + "commandSyntaxPop": "pop", + "commandSyntaxProx": "prox", + "commandSyntaxRecycle": "reciclar", + "commandSyntaxRemove": "remover", + "commandSyntaxResearch": "pesquisa", + "commandSyntaxSearch": "pesquisar", + "commandSyntaxSend": "enviar", + "commandSyntaxSmall": "pequeno", + "commandSyntaxStack": "pilha", + "commandSyntaxStatus": "estado", + "commandSyntaxSteamid": "steamid", + "commandSyntaxStone": "pedra", + "commandSyntaxSubscribe": "sub", + "commandSyntaxTTS": "tts", + "commandSyntaxTeam": "equipa", + "commandSyntaxTime": "hora", + "commandSyntaxTimer": "timer", + "commandSyntaxTimers": "timers", + "commandSyntaxTranslateFromTo": "trf", + "commandSyntaxTranslateTo": "tr", + "commandSyntaxTravelingVendor": "vendedor", + "commandSyntaxTwig": "twig", + "commandSyntaxUnmute": "unmute", + "commandSyntaxUnsubscribe": "unsub", + "commandSyntaxUpkeep": "upkeep", + "commandSyntaxUptime": "uptime", + "commandSyntaxWipe": "wipe", + "commandSyntaxWood": "wood", + "commandsAlarmDesc": "Operações nos Alarmes Inteligentes.", + "commandsAlarmEditDesc": "Editar as propriedades de um Alarme Inteligente.", + "commandsAlarmEditIdDesc": "O ID do Alarme Inteligente.", + "commandsAlarmEditImageDesc": "Definir a imagem que melhor representa o Alarme Inteligente.", + "commandsAliasAddAliasDesc": "O alias a ser usado.", + "commandsAliasAddDesc": "Adicionar um alias.", + "commandsAliasAddValueDesc": "O comando/sequência de caracteres.", + "commandsAliasDesc": "Crie um alias para um comando/sequência de caracteres.", + "commandsAliasRemoveDesc": "Remover um alias.", + "commandsAliasRemoveIndexDesc": "O índice do alias a ser removido.", + "commandsAliasShowDesc": "Mostrar todos os alias registados.", + "commandsBlacklistAddDesc": "Adicionar utilizador à lista negra.", + "commandsBlacklistDesc": "Adicionar um utilizador a lista negra de utilização do bot.", + "commandsBlacklistDiscordUserDesc": "O utilizador do discord.", + "commandsBlacklistRemoveDesc": "Remover um utilizador da lista negra.", + "commandsBlacklistShowDesc": "Mostrar utilizadores na lista negra.", + "commandsBlacklistSteamidDesc": "A steamid do utilizador.", + "commandsCctvDesc": "Exibir códigos CCTV para um monumento", + "commandsCraftDesc": "Exibir o custo para criar um item.", + "commandsCraftQuantityDesc": "A quantidade de itens a serem criados.", + "commandsCredentialsAddDesc": "Adicionar credenciais FCM.", + "commandsCredentialsDesc": "Definir/Limpar as Credenciais FCM para a conta do usuário.", + "commandsCredentialsRemoveDesc": "Remover Credenciais FCM.", + "commandsCredentialsRemoveSteamIdDesc": "SteamId das Credenciais FCM para remover.", + "commandsCredentialsSetHosterDesc": "Definir o hospedeiro das Credenciais FCM.", + "commandsCredentialsSetHosterSteamIdDesc": "SteamId do hospedeiro das credenciais FCM.", + "commandsCredentialsShowDesc": "Mostra as Credenciais FCM registadas atualmente.", + "commandsDecayDesc": "Exibe o tempo de decomposição de um item.", + "commandsDespawnDesc": "Exibe o tempo de desaparecimento de um item.", + "commandsHelpCommandList": "Lista de Comandos", + "commandsHelpDesc": "Exibir mensagem de ajuda.", + "commandsHelpHowToCredentials": "Como registrar as credenciais", + "commandsHelpHowToPairServer": "Como emparelhar o Bot com o servidor Rust", + "commandsItemDesc": "Obter os detalhes de um item.", + "commandsLeaderDesc": "Dar ou retirar a liderança de/para um membro da equipa.", + "commandsLeaderMemberDesc": "O nome do membro da equipa.", + "commandsMapAllDesc": "Obter o mapa, incluindo nomes de monumentos e marcadores.", + "commandsMapCleanDesc": "Obter o mapa limpo.", + "commandsMapDesc": "Obter a imagem do mapa do servidor atualmente conectado.", + "commandsMapMarkersDesc": "Obter o mapa incluindo marcadores.", + "commandsMapMonumentsDesc": "Obter o mapa incluindo marcadores.", + "commandsMarketDesc": "Operações para Máquinas de Venda.", + "commandsMarketListDesc": "Exibir a lista de subscrição.", + "commandsMarketOrderDesc": "O tipo de pedido.", + "commandsMarketSearchDesc": "Procurar por um item nas Máquinas de Venda.", + "commandsMarketSubscribeDesc": "Subscrever um item na Máquina de Venda.", + "commandsMarketUnsubscribeDesc": "Cancelar subscrição de um item na Máquina de Venda.", + "commandsPlayersBattlemetricsIdDesc": "O ID do Battlemetrics do servidor (padrão: O servidor conectado).", + "commandsPlayersDesc": "Obter informações do jogador/jogador com base no Battlemetrics.", + "commandsPlayersNameDesc": "Procurar um jogador no Battlemetrics com base no nome do jogador.", + "commandsPlayersPlayerIdDesc": "Procurar um jogador no Battlemetrics com base no ID do jogador.", + "commandsPlayersPlayerIdPlayerIdDesc": "O ID do jogador.", + "commandsPlayersStatusDesc": "Procurar por jogadores que estão online/offline/qualquer.", + "commandsRecycleDesc": "Exibir os recursos da reciclagem de um item.", + "commandsRecycleQuantityDesc": "A quantidade de itens para reciclar.", + "commandsRecycleRecyclerTypeDesc": "O tipo de reciclador (reciclador, triturador ferro-velho, reciclador zona segura).", + "commandsResearchDesc": "Exibe o custo para pesquisar um item.", + "commandsResetAlarmsDesc": "Repor o canal de alarmes.", + "commandsResetDesc": "Repor canais do Discord.", + "commandsResetInformationDesc": "Repor canal de informações.", + "commandsResetServersDesc": "Repor canal de servidores.", + "commandsResetSettingsDesc": "Repor canal de configurações.", + "commandsResetStorageMonitorsDesc": "Repor canal de monitores de armazenamento.", + "commandsResetSwitchesDesc": "Repor canal de interruptores e Grupos de interruptores.", + "commandsResetTrackersDesc": "Repor canal de rastreadores.", + "commandsRoleClearDesc": "Limpar o cargo (para permitir que todos vejam os canais do rustplusplus).", + "commandsRoleDesc": "Definir/Limpar o cargo específico que será capaz de ver o conteúdo da categoria do rustplusplus.", + "commandsRoleSetDesc": "Definir o cargo.", + "commandsRoleSetRoleDesc": "O cargo para que os canais do rustplusplus estarão visíveis.", + "commandsStackDesc": "Exibir o tamanho da pilha de um item.", + "commandsStoragemonitorDesc": "Operações nos monitores de armazenamento.", + "commandsStoragemonitorEditDesc": "Editar as propriedades de um Monitor de Armazenamento.", + "commandsStoragemonitorEditIdDesc": "O ID do Monitor de Armazenamento.", + "commandsStoragemonitorEditImageDesc": "Definir a imagem que melhor representa o Monitor de Armazenamento.", + "commandsSwitchDesc": "Operações nos Interruptores Inteligentes.", + "commandsSwitchEditDesc": "Editar as propriedades de um interruptor inteligente.", + "commandsSwitchEditIdDesc": "O ID do Interruptor Inteligente.", + "commandsSwitchEditImageDesc": "Definir a imagem que melhor representa o Interruptor Inteligente.", + "commandsUpkeepDesc": "Exibir o custo de manutenção de um item.", + "commandsUptimeBotDesc": "Exibir tempo de atividade do bot.", + "commandsUptimeDesc": "Exibir tempo de atividade do bot e do servidor.", + "commandsUptimeServerDesc": "Exibir tempo de atividade do servidor.", + "commandsVoiceBotJoinedVoice": "O bot juntou-se ao canal de voz", + "commandsVoiceBotLeftVoice": "O bot saiu do canal de voz", + "commandsVoiceDesc": "Comandos de Voz do Bot", + "commandsVoiceFemale": "Feminino", + "commandsVoiceFemaleDescription": "Definir o gênero do ator para Feminino", + "commandsVoiceGenderDesc": "Definir o gênero do ator de voz.", + "commandsVoiceJoin": "A entrar no canal de voz {name} com o ID {id} na guilda {guild}", + "commandsVoiceJoinDesc": "Junta-se ao canal de voz", + "commandsVoiceLeave": "A sair do canal de voz {name} com o ID {id} na guilda {guild}", + "commandsVoiceLeaveDesc": "Sai do canal de voz", + "commandsVoiceMale": "Masculino", + "commandsVoiceMaleDescription": "Definir o gênero do ator para Masculino", + "commandsVoiceNotInVoice": "Você não está num canal de voz", + "connect": "Conectar", + "connectCap": "CONECTAR", + "connected": "Conectado", + "connectedCap": "CONECTADO", + "connectedToServer": "CONECTADO AO SERVIDOR.", + "connectingCap": "A CONECTAR", + "connectingToServer": "A CONECTAR AO SERVIDOR...", + "connectionEvents": "Eventos de conexão", + "connectionRefusedTo": "Conexão recusada a: {id}.", + "connectionsCap": "CONEXÕES", + "couldNotAddStepTracers": "Não foi possível adicionar rastro de passos.", + "couldNotAppendMapMarkers": "Não foi possível adicionar marcadores de mapa, o pedido do rustplus não está definido.", + "couldNotAppendMapMonuments": "Não foi possível adicionar monumentos do mapa, o pedido do rustplus não está definido.", + "couldNotAppendMapTracers": "Não foi possível adicionar rastros do mapa, o pedido do rustplus não está definido.", + "couldNotConnectTo": "Não foi possível conectar a: {id}.", + "couldNotCreateCategory": "Não foi possível criar a categoria: {name}", + "couldNotCreateTextChannel": "Não foi possível criar o canal de texto: {name}", + "couldNotDeferInteraction": "Não foi possível adiar a interação.", + "couldNotDeleteCategory": "Não foi possível apagar categoria: {categoryId}", + "couldNotDeleteChannel": "Não foi possível apagar o canal: {channelId}", + "couldNotDeleteMessage": "Não foi possível apagar a mensagem: {message}", + "couldNotFindAnyPlayers": "Não foi possível encontrar nenhum jogador.", + "couldNotFindCategory": "Não foi possível encontrar a categoria: {category}", + "couldNotFindChannel": "Não foi possível encontrar o canal: {channel}", + "couldNotFindCraftDetails": "Não foi possível encontrar detalhes de criação para {name}.", + "couldNotFindDecayDetails": "Não foi possível encontrar detalhes de decomposição para {name}.", + "couldNotFindDespawnDetails": "Não foi possível encontrar detalhes de desaparecimento para {name}.", + "couldNotFindGuild": "Não foi possível encontrar a guilda: {guildId}", + "couldNotFindLanguage": "Não foi possível encontrar o idioma: {language}", + "couldNotFindMessage": "Não foi possível encontrar a mensagem {message}", + "couldNotFindPlayer": "Não foi possível encontrar o jogador {name}.", + "couldNotFindPlayerId": "Não foi possível encontrar o jogador com o id {id}.", + "couldNotFindRecycleDetails": "Não foi possível encontrar detalhes da reciclagem para {name}.", + "couldNotFindResearchDetails": "Não foi possível encontrar detalhes de pesquisa para {name}.", + "couldNotFindRole": "Não foi possível encontrar o cargo: {roleId}", + "couldNotFindStackDetails": "Não foi possível encontrar detalhes de pilha para {name}.", + "couldNotFindTeammate": "Não foi possível encontrar o colega de equipa: {name}.", + "couldNotFindUpkeepDetails": "Não foi possível encontrar detalhes de manutenção para {name}.", + "couldNotFindUser": "Não foi possível encontrar o utilizador: {userId}", + "couldNotGetChannelWithId": "Não foi possível obter o canal com id: {id}.", + "couldNotIdentifyMember": "Não foi possível identificar o membro da equipa: {name}.", + "couldNotPerformBulkDelete": "Não foi possível executar remoção em massa no canal: {channel}", + "couldNotPerformMessageDelete": "Não foi possível apagar a mensagem.", + "couldNotPerformMessagesFetch": "Não foi possível realizar a pesquisa de mensagens no canal: {channel}", + "couldNotRegisterSlashCommands": "Não foi possível registar comandos Barra para a guilda: {guildId}. ", + "couldNotSetParent": "Could not set parent for channel: {channelId}", + "craft": "Criar", + "crate": "Caixa", + "createGroupCap": "CRIAR GRUPO", + "createTrackerCap": "CRIAR RASTREADOR", + "credentialsAddedSuccessfully": "Credenciais FCM adicionadas com sucesso para o steamId: {steamId}!", + "credentialsAlreadyRegistered": "Credenciais FCM para o steamId: {steamId} já estão registadas!", + "credentialsCannotStartLiteAlreadyHoster": "Não é possível iniciar o FCM Listener Lite para steamId: {steamId}. Já é hospedeiro.", + "credentialsDoNotExist": "Credenciais FCM para o steamId: {steamId} não existe.", + "credentialsHosterNotSetForGuild": "O hospedeiro das credenciais FCM não está definido para guild {id}, por favor defina um hospedeiro.", + "credentialsNotRegistered": "Credenciais FCM para o steamId: {steamId} não está registado!", + "credentialsNotRegisteredForGuild": "As credenciais FCM não estão registradas para a guilda: {id}, não pode iniciar o FCM-listener.", + "credentialsRemovedSuccessfully": "Credenciais FCM para o steamId: {steamId} foram removidas com sucesso!", + "credentialsSetHosterSuccessfully": "O hospedeiro das Credenciais FCM foi adicionado com sucesso para o steamId: {steamId}.", + "currencySign": "Sinal de Moeda", + "currentCommandDelay": "Atraso atual do comando: {delay} segundos.", + "currentItemHp": "A vida atual do item.", + "currentPrefixPlaceholder": "Prefixo Atual: {prefix}", + "customCommand": "Comando Personalizado", + "customTimerEditCargoShipEgressLabel": "Tempo de saída do Navio de Carga (segundos):", + "customTimerEditCrateOilRigUnlockLabel": "Tempo de desbloqueio Caixa da Oil (segundo):", + "customTimerEditDesc": "A editar os temporizadores personalizados", + "customTimersCap": "TEMPORIZADORES PERSONALIZADOS", + "dash": "Traço", + "dayOfWipe": "Dia {day}", + "deathCap": "MORTE", + "decay": "Decomposição", + "decayTimeForItem": "Tempo de decomposição de {item} é {time}.", + "decayingCap": "DECOMPONDO", + "deleteUnreachableDevicesCap": "REMOVER DISPOSITIVOS NÃO ACESSÍVEIS", + "despawnTime": "Tempo para desaparecer", + "despawnTimeOfItem": "O tempo para desaparecer {item} é {time}.", + "deviceIsAlreadyOnOff": "{device} já está {status}.", + "deviceIsCurrentlyOnOff": "{device} está {status}.", + "deviceWasTurnedOnOff": "{device} estava {status}.", + "disabledCap": "DESATIVADO", + "discoFloor": "Chão de Discoteca", + "disconnectCap": "DESCONECTAR", + "disconnected": "Desconectado", + "disconnectedCap": "DESCONECTADO", + "disconnectedFromServer": "DESCONECTADO DO SERVIDOR.", + "discordCap": "DISCORD", + "discordUsers": "Utilizadores do Discord", + "displayInformationBattlemetricsAllOnlinePlayers": "Devem todos os jogadores online do Battlemetrics serem exibidos no canal de informação?", + "displayingMap": "Exibindo o mapa {mapName}.", + "displayingOnlinePlayers": "Exibindo jogadores online.", + "distanceDirectionGrid": "{distance}m na direção {direction}° [{grid}].", + "doorController": "Controlador de Porta", + "dot": "Ponto", + "eastOfGrid": "Este da grade", + "editCap": "EDITAR", + "editing": "A editar", + "editingOf": "A editar {entity}", + "egressInTime": "A sair em {time} por {location}.", + "eight": "Oito", + "elevator": "Elevador", + "empty": "Vazio", + "enabledCap": "ATIVADO", + "entityId": "ID da entidade", + "equalsSign": "Sinal de igual", + "errorCap": "ERRO", + "errorExecutingCommand": "Ocorreu um erro ao executar este comando!", + "eventCap": "EVENTO", + "eventInfo": "Informação do Evento", + "exclamationMark": "Ponto de exclamação", + "failedToScrapeProfileName": "Falha ao analisar o nome de perfil: {link}.", + "failedToScrapeProfilePicture": "Falha ao analisar a imagem de perfil: {link}.", + "fcmCredentials": "Credenciais do FCM", + "fcmListenerStartHost": "O Host FCM-listener iniciará em 5 segundos para o guildId: {guildId}, steamId: {steamId}.", + "fcmListenerStartLite": "O Host FCM-listener Lite iniciará em 5 segundos para o guildId: {guildId}, steamId: {steamId}.", + "ferryTerminal": "Terminal de Ferry", + "fishingVillage": "Vila de Pesca", + "five": "Cinco", + "four": "Quatro", + "giantExcavatorPit": "Tubo de escavador Gigante", + "greaterThanSign": "Sinal de maior que", + "groupAddSwitchDesc": "Adicionar Interruptor a {group}", + "groupRemoveSwitchDesc": "Remover Interruptor de {group}", + "harbor": "Cais", + "hasBeenAliveLongest": "{name} esteve vivo durante mais tempo ({time}).", + "hash": "Cardinal", + "hbhfSensor": "Sensor HBHF", + "heart": "Coração", + "heater": "Aquecedor Elétrico", + "heavyScientistCalledSetting": "Quando os Cientistas Pesados são chamados à Plataforma de Petróleo, envia uma notificação.", + "heavyScientistsCalledLarge": "Cientistas pesados foram chamados para a Plataforma de Petróleo Grande em {location}.", + "heavyScientistsCalledSmall": "Cientistas pesados foram chamados para a Plataforma de Petróleo em {location}.", + "hideTrademark": "Ocultar marca.", + "hoster": "Hospedeiro", + "hp": "Vida", + "hpExceedMax": "A vida {hp} excede o máximo de {max}.", + "hqmQuarry": "Pedreira HQM", + "ignoreSetAvatar": "setAvatar Ignorado", + "ignoreSetNickname": "setNickname Ignorado", + "ignoreSetUsername": "setUsername Ignorado", + "inGameBotMessagesMuted": "Mensagens do bot silenciadas no jogo.", + "inGameBotMessagesUnmuted": "Mensagens do bot deixaram de ser silenciadas no jogo.", + "inGameCap": "IN-GAME", + "inGameEventInfo": "Informação do evento no jogo", + "inGameTeamNotificationsSetting": "Notificações de companheiros no jogo.", + "inGameTime": "Horas do jogo: {time}.", + "index": "Índice", + "infoCap": "INFO", + "inside": "Dentro", + "interactionEditReplyFailed": "Falha na resposta à edição da interação: {error}", + "interactionInvalidChannel": "Interação de um canal inválido.", + "interactionReplyFailed": "Resposta de interação falhou: {error}", + "interactionUpdateFailed": "Atualização da interação falhou: {error}", + "invalidBattlemetricsId": "ID da Battlemetrics invalido.", + "invalidGuildOrChannel": "Guilda ou canal inválido.", + "invalidHpInterval": "Intervalo de Vida {hp} inválido.", + "invalidId": "ID Inválido: {id}.", + "invalidStructureType": "Categoria de estrutura {type} inválido.", + "invalidSubcommand": "Subcomando inválido.", + "invalidTimeDistance": "Distância de tempo inválida: {distance}, anterior: {prevTime}, novo: {newTime}", + "isDecaying": "{device} está a decompor!", + "isNoLongerConnected": "{device} já não está conectado eletricamente!", + "item": "Item", + "itemAvailableInVendingMachine": "{items} acabou de ficar disponível numa Máquina de Venda Automática em [{location}].", + "itemAvailableNotifyInGameSetting": "Quando um item da lista de subscrição ficar disponível numa Máquina de Venda, notificar no jogo?", + "junkyard": "Ferro-velho", + "justSubscribedToItem": "Subscreveu o item {name}.", + "languageCode": "Código de idioma: {code}", + "languageLangNotSupported": "O idioma {language} não é suportado.", + "languageNotSupported": "O idioma não é suportado.", + "largeBarn": "Celeiro Grande", + "largeFishingVillage": "Vila de Pesca Grande", + "largeOilRig": "Plataforma de Petróleo Grande", + "largeWoodBox": "Caixa de Madeira Grande", + "lastTrigger": "Last Trigger", + "launchSite": "Sitio de Lançamento", + "leaderAlreadyLeader": "{name} já é o líder da equipa.", + "leaderCommandIsDisabled": "O comando Líder está desativado nas configurações.", + "leaderCommandOnlyWorks": "O comando de líder só funciona se o líder atual for {name}.", + "leaderTransferred": "A liderança da equipa foi transferida para {name}.", + "leavingMapAt": "Saindo em {location}.", + "lessThanSign": "Sinal menor que", + "lighthouse": "Farol", + "linkCap": "LINK", + "location": "Localização", + "lockedCrateLargeOilRigUnlocked": "A caixa bloqueada da Plataforma de Petróleo Grande em {location} foi desbloqueada.", + "lockedCrateOilRigUnlockedSetting": "Quando uma Caixa Bloqueada na Plataforma de Petróleo é desbloqueada, envia uma notificação.", + "lockedCrateSmallOilRigUnlocked": "A caixa bloqueada da Plataforma de Petróleo em {location} foi desbloqueada.", + "logDiscordCommand": "Comando do Discord - Guilda: {guild}, Canal: {channel}, Utilizador: {user}, Mensagem: {message}.", + "logDiscordMessage": "Mensagem do Discord - Guilda: {guild}, Canal: {channel}, Utilizador: {user}, Mensagem: {message}.", + "logInGameCommand": "{type} - Comando: {command}, Utilizador: {user}.", + "logInGameMessage": "Mensagem: {message}, Utilizador: {user}", + "logSmartSwitchGroupValueChange": "Grupo de Interruptores Inteligentes - Valor: {value}.", + "logSmartSwitchValueChange": "Interruptor Inteligente - Valor: {value}.", + "loggedInAs": "CONECTADO COMO: {name}", + "makeSureApplicationsCommandsEnabled": "Certifique-se de que o applications.commands está marcado ao criar o URL de convite.", + "map": "Mapa", + "mapSalt": "Sal do Mapa", + "mapSeed": "Semente do Mapa", + "mapSize": "Tamanho do mapa", + "mapWipeDetectedNotifySetting": "Quando o Wipe do Mapa for detectada, {group} deve ser notificado?", + "markerAdded": "O marcador {name} em [{location}] foi adicionado.", + "markerDoesNotExist": "O Marcador {name} não existe.", + "markerLocation": "O marcador {name} em [{location}] está a {distance}m de {player} na direção {direction}°.", + "markerRemoved": "O marcador {name} em [{location}] foi removido.", + "message": "Mensagem", + "messageCap": "MENSAGEM", + "messageDeletedIn30": "Esta mensagem será apagada em 30 segundos.", + "messageEditFailed": "Edição de mensagem falhou: {error}", + "messageReplyFailed": "Resposta à mensagem falhou: {error}", + "messageSendFailed": "Envio de mensagem falhou: {error}", + "messageWasSent": "A mensagem foi enviada.", + "militaryTunnel": "Túnel Militar", + "miningOutpost": "Posto de Mineração", + "missileSilo": "Silo de Mísseis", + "missingArguments": "Argumentos em falta.", + "missingPermission": "Você não tem permissão para fazer isto.", + "missingTimerMessage": "Falta a mensagem do temporizador.", + "modalValueChange": "Interação Modal - VerifyId: {id}, Valor: {value}.", + "more": "mais", + "morePlayers": "{players} ...{number} mais.", + "mutedCap": "SILENCIADO", + "name": "Nome", + "nameChangeHistory": "Histórico de alterações de nome", + "new": "Novo", + "newVendingMachine": "Nova Máquina de Venda, localizada em {location}.", + "newsCap": "Novidades", + "noActiveTimers": "Sem temporizadores ativos.", + "noCommandDelay": "Sem atraso de comando.", + "noCommunicationSmartSwitch": "Não foi possível comunicar com o Interruptor Inteligente: {name}", + "noData": "Sem dados.", + "noDataOnLargeOilRig": "Sem dados atuais na Plataforma de Petróleo Grande.", + "noDataOnSmallOilRig": "Sem dados atuais na Plataforma de Petróleo.", + "noDelayCap": "SEM ATRASO", + "noItemFound": "O item não foi encontrado em nenhuma Máquina de Venda...", + "noItemWithIdFound": "Nenhum item com o id {id} foi encontrado.", + "noItemWithNameFound": "Nenhum item com o nome {name} foi encontrado.", + "noNameIdGiven": "Nenhum 'nome' ou 'id' foi fornecido.", + "noOneIsAfk": "Não está ninguém AFK.", + "noOneIsOffline": "Não está ninguém desconectado.", + "noOneIsOnline": "Não está ninguém conectado.", + "noRegisteredConnectionEvents": "Não há eventos de conexão registados ainda.", + "noRegisteredConnectionEventsUser": "Não há eventos de conexão registados ainda para {user}.", + "noRegisteredDeathEvents": "Não há eventos de morte registados ainda.", + "noRegisteredDeathEventsUser": "Não há eventos de morte registados ainda para {user}.", + "noRegisteredEvents": "Não há eventos registados ainda.", + "noRegisteredMarkers": "Não há marcadores registados.", + "noSavedNotes": "Não há notas guardadas.", + "noToolCupboardWereFound": "Nenhum monitor de Armário de Ferramentas foi encontrado.", + "none": "Nenhum", + "northEast": "Nordeste", + "northOfGrid": "Norte da grelha", + "northWest": "Noroeste", + "notAValidOrderType": "{order} não é um tipo de pedido válido.", + "notActive": "Não activo.", + "notConnectedToRustServer": "Não está conectado a um servidor rust no momento.", + "notExistInSubscription": "O item {name} não existe na lista de subscrição.", + "notFoundCap": "NÃO ENCONTRADO", + "notPartOfRole": "Você não faz parte do cargo {role}, portanto não pode executar comandos do bot.", + "notShowingCap": "NÃO MOSTRAR", + "noteCap": "NOTA", + "noteIdDoesNotExist": "ID da Nota: {id} não existe.", + "noteIdInvalid": "O ID da nota é inválido.", + "noteIdWasRemoved": "ID da Nota: {id} foi removido.", + "noteSaved": "Nota gravada.", + "offCap": "DESLIGADO", + "offline": "Desconectado", + "offlineTime": "Tempo desconectado", + "oilRig": "Plataforma de Petróleo", + "old": "Antigo", + "onCap": "LIGADO", + "one": "Um", + "online": "Conectado", + "onlineTime": "Tempo conectado", + "onlyOneInTeam": "Você é o único na equipa.", + "outpost": "Posto Avançado", + "outside": "Lado de Fora", + "oxumsGasStation": "Posto de Gasolina Oxum", + "pairing": "a emparelhar", + "patrolHelicopter": "Helicóptero de Patrulha", + "patrolHelicopterDestroyedSetting": "Quando o Helicóptero de Patrulha for destruído, envia uma notificação.", + "patrolHelicopterDetectedSetting": "Quando o Helicóptero de Patrulha for detetado, envia uma notificação.", + "patrolHelicopterEntersMap": "O Helicóptero de Patrulha entrou no mapa em {location}.", + "patrolHelicopterLeftMap": "O Helicóptero de Patrulha saiu do mapa em {location}.", + "patrolHelicopterLeftSetting": "Quando o Helicóptero de Patrulha sair do mapa, envia uma notificação.", + "patrolHelicopterLocatedAt": "O Helicóptero de Patrulha está em {location}.", + "patrolHelicopterNotCurrentlyOnMap": "O Helicóptero de Patrulha não está no mapa.", + "patrolHelicopterTakenDown": "O Helicóptero de Patrulha foi abatido em {location}.", + "percentSign": "Sinal de Percentagem", + "pipe": "Barra vertical", + "playerHasBeenAliveFor": "{name} esteve vivo por {time}.", + "playerId": "ID do Jogador", + "playerJoinedTheTeam": "{name} juntou-se à equipa.", + "playerJustConnected": "{name} acabou de conectar.", + "playerJustConnectedTo": "{name} acabou de conectar-se a {server}.", + "playerJustConnectedTracker": "{name} acabou de conectar-se ao rastreador {tracker}.", + "playerJustDied": "{name} acabou de morrer em {location}.", + "playerJustDisconnected": "{name} acabou de desconectar.", + "playerJustDisconnectedFrom": "{name} acabou de desconectar-se de {server}.", + "playerJustDisconnectedTracker": "{name} acabou de desconectar-se do rastreador {tracker}.", + "playerJustReturned": "{name} acabou de regressar ({time}).", + "playerJustWentAfk": "{name} acabou de ficar AFK.", + "playerLeftTheTeam": "{name} saiu da equipa.", + "playerNotPairedWithServer": "O comando Líder não funciona porque o {name} não está emparelhado com o servidor.", + "players": "Jogadores", + "playersSearch": "Pesquisa de jogadores", + "plusSign": "Sinal de Mais", + "populationPlayers": "População: ({current}/{max}) jogadores.", + "populationQueue": "{number} jogadores na fila.", + "powerPlant": "Central Elétrica", + "profile": "Perfil", + "proxLocation": "{name} está a {distance}m de {caller} na direção {direction}° [{location}]", + "quantity": "Quantidade", + "questionMark": "Ponto de Interrogação", + "ranch": "Celeiro", + "ratelimited": "RATELIMITED", + "reconnectingCap": "A RECONECTAR", + "reconnectingToServer": "A RECONECTAR AO SERVIDOR...", + "recycle": "Reciclar", + "recycleCap": "RECICLAR", + "recycler": "Reciclador", + "remain": "restantes", + "removePlayerCap": "REMOVER JOGADOR", + "removeSwitchCap": "REMOVER INTERRUPTOR", + "removedSubscribeItem": "O item {name} foi removido da subscrição.", + "research": "Pesquisar", + "researchTable": "Mesa de Pesquisa", + "resetSuccess": "Discord reposto com sucesso.", + "responseContainError": "A resposta contém propriedade de erro com o valor: {error}.", + "responseIsEmpty": "A resposta está vazia.", + "responseIsUndefined": "A resposta não está definida.", + "responseTimeout": "Tempo limite atingido enquanto aguardava resposta.", + "resultRecycling": "Resultado da reciclagem", + "roleCleared": "O cargo do rustplusplus foi removido.", + "roleSet": "O cargo do rustplusplus foi definido para {name}.", + "rustMonument": "Monumento do Rust", + "rustplusOperational": "RUSTPLUS OPERACIONAL.", + "safe-zone-recycler": "Reciclador Zona Segura", + "samsite": "Local de Sistema Anti-Aéreo", + "satelliteDish": "Antena Parabólica", + "scrap": "Sucata", + "searchResult": "Resultado da pesquisa para o item: **{name}**", + "second": "{second} segundos", + "secondCommandDelay": "{second} segundos de atraso do comando.", + "seconds": "{seconds} segundos", + "secondsCommandDelay": "{seconds} segundos de atraso do comando.", + "selectInGamePrefixSetting": "Selecione o prefixo de comando que deve ser usado no jogo:", + "selectLanguageExtendSetting": "Certifique-se de executar o **/reset discord** para carregar com sucesso o novo idioma.", + "selectLanguageSetting": "Selecione o idioma que o bot usa:", + "selectMenuValueChange": "Selecione a Interação do Menu - VerifyId: {id}, Valor: {value}.", + "selectTrademarkSetting": "Selecione qual marca registada que deve ser mostrada em cada mensagem no jogo.", + "sell": "vender", + "semicolon": "Ponto e vírgula", + "sentTextToSpeech": "Texto-Para-Fala enviado.", + "server": "servidor", + "serverId": "ID do Servidor", + "serverInfo": "Informação do Servidor", + "serverInvalid": "A conexão com o servidor parece ser inválida. Tente re-emparelhar ao servidor.", + "serverJustOffline": "O servidor acabou de desconectar-se.", + "serverJustOnline": "O servidor acabou de conectar-se.", + "serverStatus": "Estado do Servidor", + "serviceUnavailable": "Serviço Indisponível: {error}", + "setBotLanguage": "Define o idioma do bot para: {language}.", + "seven": "Sete", + "sewerBranch": "Ramo de Esgoto", + "shouldBotBeMutedSetting": "O bot deve ser silenciado dentro do jogo?", + "shouldCommandsEnabledSetting": "Os comandos dentro do jogo devem ser habilitados?", + "shouldLeaderCommandEnabledSetting": "O comando de líder deve ser ativado?", + "shouldLeaderCommandOnlyForPairedSetting": "O comando de líder deve funcionar somente para pessoas que estão emparelhadas com o servidor?", + "shouldSmartAlarmNotifyNotConnectedSetting": "O Alarmes Inteligentes deve notificar mesmo que não estejam configurados no servidor de rust conectado?", + "shouldSmartAlarmsNotifyInGameSetting": "O Alarmes Inteligentes deve notificar no jogo?", + "shouldSmartSwitchNotifyInGameWhenChangedFromDiscord": "Os Interruptores Inteligentes e os Grupos de Interruptores Inteligentes devem notificar no jogo quando são alterados pelo discord?", + "showingBlacklist": "A mostrar a lista negra.", + "showingSubscriptionList": "A mostrar a lista de subscrição.", + "shredder": "Triturador", + "sirenLight": "Sirene Luminosa", + "six": "Seis", + "slash": "Barra", + "slashCommandInteraction": "Slash Command Interaction - Guild: {guild}, Channel: {channel}, User: {user}, Command: {command}, VerifyId: {id}.", + "slashCommandValueChange": "Slash Command Interaction - VerifyId: {id}, Value: {value}.", + "slashCommandsSuccessRegister": "Comandos de aplicação registados com sucesso para a guilda: {guildId}.", + "slots": "Vagas", + "smallOilRig": "Plataforma de Petróleo", + "smartAlarm": "Alarme Inteligente", + "smartAlarmEditSuccess": "Alarme Inteligente {name} foi editado com sucesso.", + "smartAlarmNotifyExtendSetting": "- Estas notificações de alarme usarão o título e a mensagem dada ao Alarme Inteligente dentro do jogo.\n- Estes Alarmes Inteligentes podem não estar disponíveis no canal de texto de alarmes no discord.", + "smartDeviceNotFound": "{device} não foi encontrado! Ou foi destruído, ou {user} perdeu o acesso ao Armário de Ferramentas.", + "smartSwitch": "Interruptor Inteligente", + "smartSwitchAutoDay": "O Interruptor Inteligente só estará ativo durante o dia.", + "smartSwitchAutoNight": "O Interruptor Inteligente só estará ativo durante a noite.", + "smartSwitchAutoOff": "O Interruptor Inteligente ficará inativo automaticamente durante o ciclo de atualização.", + "smartSwitchAutoOffAnyOnline": "O Interruptor Inteligente ficará inativo automaticamente se algum colega de equipa estiver online.", + "smartSwitchAutoOffProximity": "O Interruptor Inteligente ficará inativo automaticamente se o colega de equipe estiver perto.", + "smartSwitchAutoOn": "O Interruptor Inteligente ficará ativo automaticamente durante o ciclo de atualização.", + "smartSwitchAutoOnAnyOnline": "O Interruptor Inteligente ficará ativo automaticamente se algum colega de equipa estiver online.", + "smartSwitchAutoOnProximity": "O Interruptor Inteligente ficará ativo automaticamente se o colega de equipe estiver perto.", + "smartSwitchEditProximityLabel": "Configuração de Proximidade (metros):", + "smartSwitchEditSuccess": "Interruptor Inteligente {name} foi editado com sucesso.", + "smartSwitchNormal": "O Interruptor Inteligente funciona normalmente.", + "smilyFace": "Cara Sorridente", + "somethingWrongWithConnection": "Ocorreu um problema com a conexão.", + "southEast": "Sudeste", + "southOfGrid": "Sul da grelha", + "southWest": "Sudoeste", + "sprinkler": "Aspersor", + "stackSize": "Tamanho da Pilha", + "stackSizeOfItem": "O tamanho da pilha de {item} é {quantity}x.", + "status": "Estado", + "statusNotConnectedToServer": "**ESTADO** `NÃO CONECTADO AO SERVIDOR!`", + "statusNotElectronicallyConnected": "**ESTADO** `NÃO ESTÁ ELETRICAMENTE CONECTADO!`", + "statusNotFound": "**ESTADO**: NÃO ENCONTRADO", + "steamId": "SteamID", + "stoneQuarry": "Pedreira", + "storageMonitor": "Monitor de Armazenamento", + "storageMonitorEditSuccess": "Monitor de Armazenamento {name} foi editado com sucesso.", + "streamerMode": "Modo Streamer", + "subscribeToChangesBattlemetrics": "Subscrever diferentes mudanças no Battlemetrics.", + "subscriptionList": "Lista de Subscrições", + "subscriptionListEmpty": "Lista de subscrições de itens está vazia.", + "sulfurQuarry": "Pedreira de Enxofre", + "switches": "Interruptores", + "teamMember": "Membro da Equipa", + "teamMemberInfo": "Informação do Membro da Equipa", + "theDome": "A Cúpula", + "theIdOfTheItem": "O ID do item.", + "theNameOfTheItem": "O nome do item.", + "theNameOfThePlayer": "O nome do jogador.", + "three": "Três", + "tilde": "Til", + "time": "Hora", + "timeBeforeCargoEntersEgress": "{time} antes do Navio de Carga em {location} entrar no estágio de saída.", + "timeBeforeCrateAtLargeOilRigUnlocks": "{time} até a Caixa Bloqueada na Plataforma de Petróleo Grande ({location}) desbloquear.", + "timeBeforeCrateAtSmallOilRigUnlocks": "{time} até a Caixa Bloqueada na Plataforma de Petróleo ({location}) desbloquear.", + "timeCap": "HORA", + "timeFormatInvalid": "Formato de hora inválido.", + "timeLeftTimer": "{id}: Tempo restante: {time}, Mensagem: {message}", + "timeSinceAlarmWasTriggered": "O alarme {alarm} foi disparado há {time}.", + "timeSinceCargoLeft": "{time} desde quando o Navio de Carga saiu do mapa.", + "timeSinceChinook47OnMap": "{time} desde quando o último Chinook 47 esteve no mapa.", + "timeSinceHeavyScientistsOnLarge": "{time} desde a última vez que os Cientistas Pesados foram chamados para a Plataforma de Petróleo Grande.", + "timeSinceHeavyScientistsOnSmall": "{time} desde a última vez que os Cientistas Pesados foram chamados para a Plataforma de Petróleo.", + "timeSinceLast": "{time} desde o último.", + "timeSinceLastEvent": "{time} desde o último evento.", + "timeSinceLastSinceDestroyedLong": "{time1} desde a última vez que o Helicóptero de Patrulha esteve no mapa, {time2} desde a última vez que foi derrubado{location}.", + "timeSinceLastSinceDestroyedShort": "{time1} desde o último.\n{time2} desde que foi destruido{location}.", + "timeSincePatrolHelicopterWasOnMap": "{time} desde quando o Helicóptero de Patrulha esteve no mapa.", + "timeSinceTravelingVendorWasOnMap": "{time} desde quando o Vendedor Ambulante esteve no mapa.", + "timeSinceWipe": "{time} desde o wipe.", + "timeTill": "Tempo até {event}", + "timeTillDaylight": "{time} antes do amanhecer.", + "timeTillNightfall": "{time} antes do anoitecer.", + "timeTillStructureDecay": "{time} antes da decomposição da parede de {type}.", + "timeUntilUnlocksAt": "{time} até desbloquear em {location}.", + "timer": "Temporizador: {message}.", + "timerIdDoesNotExist": "ID do Temporizador: {id} não existe.", + "timerIdInvalid": "O ID doTemporizador é inválido.", + "timerRemoved": "ID do Temporizador: {id} foi removido.", + "timerSet": "Temporizador definido para {time}.", + "tokensDidNotReplenish": "Tokens não reabasteceram a tempo.", + "toolCupboard": "Armário de Ferramentas", + "total": "Total", + "tracker": "Rastreador", + "trackerAddPlayerDesc": "Adicionar Jogador ao {tracker}", + "trackerRemovePlayerDesc": "Remover Jogador de {tracker}", + "trademarkShownBeforeMessage": "{trademark} será exibido antes das mensagens.", + "trainYard": "Estação de Comboios", + "travelingVendor": "Vendedor Ambulante", + "travelingVendorDetectedSetting": "Quando o Vendedor Ambulante for detetado, envia uma notificação.", + "travelingVendorHaltedAt": "O Vendedor Ambulante parou em {location}.", + "travelingVendorHaltedSetting": "Quando o Vendedor Ambulante parar, envia uma notificação.", + "travelingVendorLeftSetting": "Quando o Vendedor Ambulante sair do mapa, envia uma notificação.", + "travelingVendorLocatedAt": "O Vendedor Ambulante está em {location}.", + "travelingVendorLeftMap": "O Vendedor Ambulante saiu do mapa em {location}.", + "travelingVendorNotCurrentlyOnMap": "O Vendedor Ambulante não está no mapa.", + "travelingVendorResumedAt": "O Vendedor Ambulante voltou a andar em {location}.", + "travelingVendorSpawnedAt": "O Vendedor Ambulante apareceu em {location}.", + "turnOffCap": "DESLIGAR", + "turnOnCap": "LIGAR", + "turningGroupOnOff": "Tornar o grupo {group} {status}.", + "two": "Dois", + "type": "Tipo", + "unavailable": "Indisponível", + "underscore": "Sublinhado", + "underwater": "Subaquático", + "underwaterLab": "Laboratório Subaquático", + "unhandledRejection": "Unhandled Rejection: {error}", + "unknown": "Desconhecido", + "unknownInteraction": "Interação Desconhecida...", + "unmutedCap": "DESSILENCIADO", + "updateCap": "ATUALIZAÇÃO", + "upkeep": "Custo de manutenção", + "upkeepForItem": "O custo de manutenção de {item} é {cost}.", + "userAddedToBlacklist": "{user} foi adicionado à lista negra.", + "userAlreadyInBlacklist": "{user} já está na lista negra.", + "userButtonInteraction": "Interação de botão - Guilda: {guild}, Canal: {channel}, Utilizador: {user}, CustomId: {customid}, VerifyId: {id}.", + "userButtonInteractionSuccess": "Interação de Botão - VerifyId: {id} SUCESSO", + "userJustConnected": "{name} acabou de conectar.", + "userModalInteraction": "Interação Modal - Guilda: {guild}, Canal: {channel}, Utilizador: {user}, CustomId: {customid}, VerifyId: {id}.", + "userModalInteractionSuccess": "Interação Modal - VerifyId: {id} SUCESSO", + "userNotInBlacklist": "{user} não está na lista negra.", + "userNotRegistered": "{user} não está registado.", + "userPartOfBlacklist": "VerifyId: {id}, {user} faz parte da lista negra.", + "userPartOfBlacklistDiscord": "Utilizador Bloqueado! Guilda: {guild}, Canal: {channel}, Utilizador: {user}, Mensagem: {message}.", + "userPartOfBlacklistInGame": "Utilizador Bloqueado! Utilizador: {user}, Mensagem: {message}.", + "userRemovedFromBlacklist": "{user} foi removido da lista negra.", + "userSaid": "{user} disse: {text}", + "userSelectMenuInteraction": "Interação de Menu de Seleção - Guilda: {guild}, Canal: {channel}, Utilizador: {user}, CustomId: {customid}, VerifyId: {id}.", + "userSelectMenuInteractionSuccess": "Interação de Menu de Seleção - VerifyId: {id} SUCESSO", + "userTurnedOnOffSmartSwitchFromDiscord": "{user} mudou o Interruptor Inteligente {name} para {status} através do discord.", + "userTurnedOnOffSmartSwitchGroupFromDiscord": "{user} mudou o Grupo de Interruptores Inteligentes {name} para {status} através do discord.", + "value": "Valor", + "vendingMachine": "Máquina de Venda", + "vendingMachineDetectedSetting": "Quando uma nova Máquina de Venda Automática for detetada, envia uma notificação.", + "voiceCap": "VOZ", + "warningCap": "AVISO", + "waterTreatmentPlant": "Estação de Tratamento de Água", + "websiteCap": "WEBSITE", + "websocketClosedBeforeConnection": "WebSocket fechou antes de a conexão ser estabelecida.", + "westOfGrid": "Oeste da grelha", + "wipe": "Wipe", + "wipeDetected": "Wipe detetado!", + "yield": "Rendimento", + "youAreAlreadyLeader": "Você já é o líder.", + "youAreNotPairedWithServer": "O comando Líder não funciona porque você não está emparelhado com o servidor." +} \ No newline at end of file diff --git a/src/languages/ru.json b/src/languages/ru.json index bad06d019..f1d099369 100644 --- a/src/languages/ru.json +++ b/src/languages/ru.json @@ -7,7 +7,7 @@ "addSwitchCap": "ДОБАВИТЬ ПЕРЕКЛЮЧАТЕЛЬ", "afkCap": "AFK", "airfield": "Аэропорт", - "alarmHaveNotBeenTriggeredYet": "Будильник {alarm} ещё не срабатывал.", + "alarmHaveNotBeenTriggeredYet": "Сигнализация {alarm} ещё не срабатывала.", "alias": "Псевдоним", "aliasAlreadyExist": "Псевдоним уже существует", "aliasIndexCouldNotBeFound": "Индекс псевдонимов не найден.", @@ -28,10 +28,10 @@ "atSign": "Собака", "autoDayCap": "АВТО-ДЕНЬ", "autoNightCap": "АВТО-НОЧЬ", - "autoOffAnyOnlineCap": "АВТО-ВКЛ-ОНЛАЙН", + "autoOffAnyOnlineCap": "АВТО-ВЫКЛ-ЛЮБОЙ-ОНЛАЙН", "autoOffCap": "АВТО-ВЫКЛ", "autoOffProximityCap": "АВТО-ВЫКЛ-ДИСТАНЦИЯ", - "autoOnAnyOnlineCap": "АВТО-ВКЛ-ОНЛАЙН", + "autoOnAnyOnlineCap": "АВТО-ВКЛ-ЛЮБОЙ-ОНЛАЙН", "autoOnCap": "АВТО-ВКЛ", "autoOnProximityCap": "АВТО-ВКЛ-ДИСТАНЦИЯ", "autoSettingCap": "Автоматическая настройка: ", @@ -70,9 +70,12 @@ "cargoLocatedAt": "Грузовой корабль находится в {location}.", "cargoNotCurrentlyOnMap": "Грузовой корабль в настоящее время не на карте.", "cargoShipDetectedSetting": "Уведомление при обнаружении Грузового корабля.", + "cargoShipDockingAtHarbor": "Грузовой корабль только что прибыл в порт на {location}", + "cargoShipDockingAtHarborSetting": "Уведомление когда грузовой корабль прибудет в порт.", "cargoShipEgressSetting": "Уведомление когда Грузовой корабль начнёт уплывать.", "cargoShipEntersEgressStage": "Грузовой корабль ({location}) начинает покидать карту.", "cargoShipEntersMap": "Грузовой корабль появился на карте ({location}).", + "cargoShipLeftHarbor": "Грузовой корабль только что покинул порт в {location}", "cargoShipLeftMap": "Грузовой корабль покинул карту ({location}).", "cargoShipLeftSetting": "Уведомление когда Грузовой корабль покинет карту.", "cargoShipLocated": "Грузовой корабль расположен ({location}).", @@ -86,7 +89,7 @@ "channelNameServers": "сервера", "channelNameSettings": "настройки", "channelNameStorageMonitors": "Мониторы хранилища", - "channelNameSwitchGroups": "группы переключения", + "channelNameSwitchGroups": "группы переключателей", "channelNameSwitches": "переключатели", "channelNameTeamchat": "командный чат", "channelNameTrackers": "трекеры", @@ -157,6 +160,7 @@ "commandSyntaxTimers": "timers", "commandSyntaxTranslateFromTo": "trf", "commandSyntaxTranslateTo": "tr", + "commandSyntaxTravelingVendor": "торговец", "commandSyntaxTwig": "солома", "commandSyntaxUnmute": "unmute", "commandSyntaxUnsubscribe": "unsub", @@ -207,7 +211,7 @@ "commandsMapMonumentsDesc": "Получить карту с названиями монументов.", "commandsMarketDesc": "Операции для Торговых автоматов.", "commandsMarketListDesc": "Показать список подписок.", - "commandsMarketOrderDesc": "Тип ордера.", + "commandsMarketOrderDesc": "Тип заказа.", "commandsMarketSearchDesc": "Поиск товара в Торговых автоматах.", "commandsMarketSubscribeDesc": "Подписаться на товар в разделе Торговые автоматы.", "commandsMarketUnsubscribeDesc": "Отписаться от товара в разделе Торговые автоматы.", @@ -219,6 +223,7 @@ "commandsPlayersStatusDesc": "Поиск игроков, которые онлайн/оффлайн/любых.", "commandsRecycleDesc": "Отобразить выход после переработки предмета.", "commandsRecycleQuantityDesc": "Количество предметов для переработки.", + "commandsRecycleRecyclerTypeDesc": "Тип переработчика (переработчик, измельчитель, переработчик безопасной зоны).", "commandsResearchDesc": "Отображение стоимости для исследования предмета.", "commandsResetAlarmsDesc": "Сбросить тревожный канал.", "commandsResetDesc": "Перезагрузка каналов Discord", @@ -335,6 +340,7 @@ "deleteUnreachableDevicesCap": "УДАЛЕНИЕ НЕДОСТУПНЫХ УСТРОЙСТВ", "despawnTime": "Время разрушения", "despawnTimeOfItem": "Время исчезновения {item} - {time}.", + "deviceIsAlreadyOnOff": "{device} уже является {status}.", "deviceIsCurrentlyOnOff": "Устройство: ({device}) сейчас {status}.", "deviceWasTurnedOnOff": "Устройство: ({device}) сейчас {status}.", "disabledCap": "ВЫКЛЮЧЕНО", @@ -420,7 +426,7 @@ "isDecaying": "{device} начинает гнить!", "isNoLongerConnected": "{device} больше не подключен к электричеству!", "item": "Предмет", - "itemAvailableInVendingMachine": "{items} метит точно в автоматическом режиме вид [{location}].", + "itemAvailableInVendingMachine": "Только что {items} стал доступен в торговом автомате [{location}].", "itemAvailableNotifyInGameSetting": "Когда предмет из списка подписки становится доступным в торговом автомате, уведомлять об этом в игре?", "junkyard": "Свалке", "justSubscribedToItem": "Вы подписались на предмет: ({name}).", @@ -453,10 +459,10 @@ "logSmartSwitchValueChange": "Умный Переключатель - Значение: {value}.", "loggedInAs": "Вошел в систему как: {name}", "makeSureApplicationsCommandsEnabled": "Убедитесь, что при создании URL приглашения бота, вы установили флажок applications.commands.", - "map": "Карта", - "mapSalt": "Карта Salt", - "mapSeed": "Карта Seed", - "mapSize": "Карта Size", + "map": "Название карты", + "mapSalt": "Salt карты", + "mapSeed": "Seed карты", + "mapSize": "Size карты", "mapWipeDetectedNotifySetting": "При обнаружении новой карты, отправлять уведомление {group}?", "markerAdded": "Метка {name} на [{location}] добавлена.", "markerDoesNotExist": "Метки {name} не существует.", @@ -577,6 +583,7 @@ "reconnectingToServer": "ПЕРЕПОДКЛЮЧЕНИЕ К СЕРВЕРУ...", "recycle": "Переработка", "recycleCap": "ПЕРЕРАБОТАТЬ", + "recycler": "Переработчик", "remain": "осталось", "removePlayerCap": "УДАЛИТЬ ИГРОКА", "removeSwitchCap": "УДАЛИТЬ ПЕРЕКЛЮЧАТЕЛЬ", @@ -593,6 +600,7 @@ "roleSet": "доступ к боту был выдан для роли: {name}.", "rustMonument": "Монумент", "rustplusOperational": "RUST+ ПОДКЛЮЧЕН.", + "safe-zone-recycler": "Переработчик безопасной зоны", "samsite": "Зенитная турель", "satelliteDish": "Спутниковая тарелка", "scrap": "лом", @@ -629,6 +637,7 @@ "shouldSmartSwitchNotifyInGameWhenChangedFromDiscord": "Должны ли переключатели и группы переключаетелей уведомлять в игре об их изменении из Discord?", "showingBlacklist": "Отображение чёрного списка.", "showingSubscriptionList": "Показание списка подписки.", + "shredder": "Измельчитель", "sirenLight": "Сирена", "six": "Шесть", "slash": "Слэш", @@ -645,11 +654,11 @@ "smartSwitchAutoDay": "Переключатель будет активен только днём.", "smartSwitchAutoNight": "Переключатель будет активен только ночью.", "smartSwitchAutoOff": "Во время цикла обновления Переключатель будет автоматически выключен.", - "smartSwitchAutoOffAnyOnline": "Переключатель автоматически выключится, если кто-то из команды находится в сети.", - "smartSwitchAutoOffProximity": "Переключатель автоматически выключится, если кто-то из команды находится поблизости.", + "smartSwitchAutoOffAnyOnline": "Авто.выкл, если кто-то из команды находится в сети.", + "smartSwitchAutoOffProximity": "Авто.выкл, если кто-то из команды находится поблизости.", "smartSwitchAutoOn": "Во время цикла обновления Переключатель будет автоматически включен.", - "smartSwitchAutoOnAnyOnline": "Переключатель автоматически включится, если кто-то из команды находится в сети.", - "smartSwitchAutoOnProximity": "Переключатель автоматически включится, если кто-то из команды находится поблизости.", + "smartSwitchAutoOnAnyOnline": "Авто.вкл, если кто-то из команды находится в сети.", + "smartSwitchAutoOnProximity": "Авто.вкл, если кто-то из команды находится поблизости.", "smartSwitchEditProximityLabel": "Настройка дистанции (метры):", "smartSwitchEditSuccess": "Переключатель ({name}) успешно отредактирован.", "smartSwitchNormal": "Переключатель работает как обычно.", @@ -684,7 +693,7 @@ "three": "Три", "tilde": "Тильде", "time": "Время", - "timeBeforeCargoEntersEgress": "{time} до того как Грузовой корабль достигнет стадии выхода в {location}.", + "timeBeforeCargoEntersEgress": "Корабль в {location}. Осталось {time} до того как корабль покинет карту.", "timeBeforeCrateAtLargeOilRigUnlocks": "Через {time} на Большая Нефтяной Вышке({location}) откроется запертый ящик.", "timeBeforeCrateAtSmallOilRigUnlocks": "Через {time} на Маленькой Нефтяной Вышке({location}) откроется запертый ящик.", "timeCap": "TIME", @@ -700,6 +709,7 @@ "timeSinceLastSinceDestroyedLong": "C момента последнего вертолёта прошло {time1}. Вертолёт сбили {time2} назад.", "timeSinceLastSinceDestroyedShort": "Был {time1} назад. \nСбит {time2} назад.", "timeSincePatrolHelicopterWasOnMap": "Патрульный вертолёт был {time} назад.", + "timeSinceTravelingVendorWasOnMap": "{time} прошло с появления Странствующего Торговца на карте.", "timeSinceWipe": "С последнего вайпа прошло {time}.", "timeTill": "Время до {event}", "timeTillDaylight": "Через {time} будет рассвет.", @@ -719,6 +729,16 @@ "trackerRemovePlayerDesc": "Удалить игрока из {tracker}", "trademarkShownBeforeMessage": "{trademark} будет отображаться перед сообщениями.", "trainYard": "Железнодорожное депо", + "travelingVendor": "Странствующий Торговец", + "travelingVendorDetectedSetting": "Уведомление при появлении Странствующего Торговца.", + "travelingVendorHaltedAt": "Странствующий Торговец остановился на {location}.", + "travelingVendorHaltedSetting": "Уведомление при остановке Странствующего Торговца.", + "travelingVendorLeftSetting": "Уведомление когда Странствующий Торговец покинет карту.", + "travelingVendorLocatedAt": "Странствующий Торговец расположен на {location}.", + "travelingVendorLeftMap": "Странствующий Торговец только что покинул карту на {location}.", + "travelingVendorNotCurrentlyOnMap": "Странствующего Торговца сейчас нет на карте.", + "travelingVendorResumedAt": "Странствующий Торговец продолжил движение на {location}.", + "travelingVendorSpawnedAt": "Странствующий Торговец появился на {location}.", "turnOffCap": "ВЫКЛЮЧИТЬ", "turnOnCap": "ВКЛЮЧИТЬ", "turningGroupOnOff": "Управляемая группа: {group} ({status}).", diff --git a/src/languages/sv.json b/src/languages/sv.json index 00bca9f5c..8d71ed5bb 100644 --- a/src/languages/sv.json +++ b/src/languages/sv.json @@ -7,14 +7,14 @@ "addSwitchCap": "LÄGG TILL STRÖMBRYTARE", "afkCap": "AFK", "airfield": "Flygfält", - "alarmHaveNotBeenTriggeredYet": "The alarm {alarm} have not been triggered yet.", - "alias": "Alias", - "aliasAlreadyExist": "Alias already exist.", - "aliasIndexCouldNotBeFound": "Alias index could not be found.", - "aliasWasAdded": "Alias was added.", - "aliasWasRemoved": "Alias was removed.", - "aliases": "Aliases", - "all": "all", + "alarmHaveNotBeenTriggeredYet": "Alarmet {alarm} har inte blivit utlöst ännu.", + "alias": "Namn", + "aliasAlreadyExist": "Namnet är upptaget.", + "aliasIndexCouldNotBeFound": "Namn index kunde inte bli hittad.", + "aliasWasAdded": "Namnet är tillagt.", + "aliasWasRemoved": "Namnet borttaget.", + "aliases": "Namn", + "all": "Alla", "allTeammatesAreDead": "Alla dina lagkamrater är döda.", "alreadySubscribedToItem": "Prenumererar redan på föremålet {name}.", "ampersand": "ochtecken", @@ -29,10 +29,10 @@ "autoDayCap": "AUTO-DAG", "autoNightCap": "AUTO-NATT", "autoOffAnyOnlineCap": "AUTO-OFF-ANY-ONLINE", - "autoOffCap": "AUTO-OFF", + "autoOffCap": "AUTO AV", "autoOffProximityCap": "AUTO-OFF-PROXIMITY", "autoOnAnyOnlineCap": "AUTO-ON-ANY-ONLINE", - "autoOnCap": "AUTO-ON", + "autoOnCap": "AUTO PÅ", "autoOnProximityCap": "AUTO-ON-PROXIMITY", "autoSettingCap": "AUTO-INSTÄLLNING", "automaticallyTurnBackOnOff": " Ändrar automatiskt tillbaka till {status} om {time}.", @@ -44,8 +44,8 @@ "battlemetricsApiRequestFailed": "Battlemetrics API Request Failed: {api_call}.", "battlemetricsCap": "BATTLEMETRICS", "battlemetricsFailedToUpdate": "Battlemetrics Server {server} failed to update.", - "battlemetricsGlobalLoginCap": "GLOBAL LOGIN", - "battlemetricsGlobalLogoutCap": "GLOBAL LOGOUT", + "battlemetricsGlobalLoginCap": "GLOBAL INLOGGNING", + "battlemetricsGlobalLogoutCap": "GLOBAL UTLOGGNING", "battlemetricsGlobalNameChangesCap": "GLOBAL NAME CHANGES", "battlemetricsId": "BattlemetricsID", "battlemetricsIdAndNameMissing": "Battlemetrics instance is missing id and name.", @@ -70,9 +70,12 @@ "cargoLocatedAt": "Cargo Ship is located at {location}.", "cargoNotCurrentlyOnMap": "Lastfartyget finns för närvarande inte på kartan.", "cargoShipDetectedSetting": "När ett lastfartyg upptäcks, skicka en notifikation.", + "cargoShipDockingAtHarbor": "Ett Lastfartyg lämnade precis kartan vid {location}", + "cargoShipDockingAtHarborSetting": "När ett lastfartyg upptäcks, skicka en notifikation.", "cargoShipEgressSetting": "När lastfartyget går in i utträdesstadiet, skicka en notifikation.", "cargoShipEntersEgressStage": "Lastfartyget bör vara i utträdesstadiet på {location}.", "cargoShipEntersMap": "Ett Lastfartyg kommer in på kartan från {location}.", + "cargoShipLeftHarbor": "Ett Lastfartyg lämnade precis kartan vid {location}", "cargoShipLeftMap": "Ett Lastfartyg lämnade precis kartan vid {location}.", "cargoShipLeftSetting": "När ett lastfartyg har lämnat kartan, skicka en notifikation.", "cargoShipLocated": "Ett Lastfartyg ligger vid {location}.", @@ -99,7 +102,7 @@ "christmasLights": "Julbelysning", "circumflex": "Cirkumflex", "clanTag": "Clan Tag", - "codes": "Codes", + "codes": "Koder", "colon": "Kolon", "comma": "Kommatecken", "commandCap": "KOMMANDO", @@ -108,12 +111,12 @@ "commandSyntaxAdd": "add", "commandSyntaxAfk": "afk", "commandSyntaxAlive": "alive", - "commandSyntaxArmored": "armored", + "commandSyntaxArmored": "Bepansrad", "commandSyntaxCargo": "cargo", "commandSyntaxChinook": "chinook", "commandSyntaxConnection": "connection", "commandSyntaxConnections": "connections", - "commandSyntaxCraft": "craft", + "commandSyntaxCraft": "skapa", "commandSyntaxDeath": "death", "commandSyntaxDeaths": "deaths", "commandSyntaxDecay": "decay", @@ -157,6 +160,7 @@ "commandSyntaxTimers": "timers", "commandSyntaxTranslateFromTo": "trf", "commandSyntaxTranslateTo": "tr", + "commandSyntaxTravelingVendor": "vendor", "commandSyntaxTwig": "twig", "commandSyntaxUnmute": "unmute", "commandSyntaxUnsubscribe": "unsub", @@ -219,6 +223,7 @@ "commandsPlayersStatusDesc": "Search for players that are online/offline/any.", "commandsRecycleDesc": "Display the output of recycling an item.", "commandsRecycleQuantityDesc": "The quantity of items to recycle.", + "commandsRecycleRecyclerTypeDesc": "The recycler type (recycler, shredder, safe-zone-recycler).", "commandsResearchDesc": "Display the cost to research an item.", "commandsResetAlarmsDesc": "Återställ larmkanalen.", "commandsResetDesc": "Återställ Discord-kanaler.", @@ -335,6 +340,7 @@ "deleteUnreachableDevicesCap": "DELETE UNREACHABLE DEVICES", "despawnTime": "Despawn Time", "despawnTimeOfItem": "Despawn time of {item} is {time}.", + "deviceIsAlreadyOnOff": "{device} is already {status}.", "deviceIsCurrentlyOnOff": "{device} är för närvarande {status}.", "deviceWasTurnedOnOff": "{device} sattes {status}.", "disabledCap": "INAKTIVERAD", @@ -577,6 +583,7 @@ "reconnectingToServer": "ÅTERANSLUTER TILL SERVERN...", "recycle": "Recycle", "recycleCap": "ÅTERVINNA", + "recycler": "Recycler", "remain": "kvar", "removePlayerCap": "TA BORT SPELARE", "removeSwitchCap": "TA BORT STRÖMBRYTARE", @@ -593,6 +600,7 @@ "roleSet": "rustplusplus role has been set to {name}.", "rustMonument": "Rust Monument", "rustplusOperational": "RUSTPLUS OPERATIV.", + "safe-zone-recycler": "Safe Zone Recycler", "samsite": "SAM site", "satelliteDish": "Parabolantenn", "scrap": "Scrap", @@ -629,6 +637,7 @@ "shouldSmartSwitchNotifyInGameWhenChangedFromDiscord": "Should Smart Switches and Smart Switch Groups notify In-Game when they are changed from discord?", "showingBlacklist": "Showing the blacklist.", "showingSubscriptionList": "Visar prenumerationslistan.", + "shredder": "Shredder", "sirenLight": "Sirenljus", "six": "Sex", "slash": "Snedstreck", @@ -700,6 +709,7 @@ "timeSinceLastSinceDestroyedLong": "{time1} since the last Patrol Helicopter was on the map, {time2} since it last got downed{location}.", "timeSinceLastSinceDestroyedShort": "{time1} since last.\n{time2} since destroyed{location}.", "timeSincePatrolHelicopterWasOnMap": "{time} sedan patrullhelikoptern fanns på kartan.", + "timeSinceTravelingVendorWasOnMap": "{time} since the Traveling Vendor was on the map.", "timeSinceWipe": "{time} sedan kartan rensades.", "timeTill": "Tid till {event}", "timeTillDaylight": "{time} innan dag.", @@ -719,6 +729,16 @@ "trackerRemovePlayerDesc": "Ta bort spelare från {tracker}", "trademarkShownBeforeMessage": "{trademark} kommer att visas före meddelanden.", "trainYard": "Tåggård", + "travelingVendor": "Traveling Vendor", + "travelingVendorDetectedSetting": "When the Traveling Vendor is detected, send a notification.", + "travelingVendorHaltedAt": "The Traveling Vendor stopped at {location}.", + "travelingVendorHaltedSetting": "When the Traveling Vendor stops moving, send a notification.", + "travelingVendorLeftSetting": "When the Traveling Vendor left the map, send a notification.", + "travelingVendorLocatedAt": "The Traveling Vendor is located at {location}.", + "travelingVendorLeftMap": "The Traveling Vendor just left the map at {location}.", + "travelingVendorNotCurrentlyOnMap": "The Traveling Vendor is not currently on the map.", + "travelingVendorResumedAt": "The Traveling Vendor resumed moving at {location}.", + "travelingVendorSpawnedAt": "The Traveling Vendor spawned at {location}.", "turnOffCap": "STÄNG AV", "turnOnCap": "SÄTT PÅ", "turningGroupOnOff": "Sätter gruppen {group} {status}.", diff --git a/src/languages/tr.json b/src/languages/tr.json index 9ce13ed9f..c8b7e925d 100644 --- a/src/languages/tr.json +++ b/src/languages/tr.json @@ -14,7 +14,7 @@ "aliasWasAdded": "Alias was added.", "aliasWasRemoved": "Alias was removed.", "aliases": "Aliases", - "all": "all", + "all": "tümü", "allTeammatesAreDead": "Tüm takım arkadaşların ölü.", "alreadySubscribedToItem": "{name} ögesi zaten takip ediliyor.", "ampersand": "Ve", @@ -44,10 +44,10 @@ "battlemetricsApiRequestFailed": "Battlemetrics API Request Failed: {api_call}.", "battlemetricsCap": "BATTLEMETRICS", "battlemetricsFailedToUpdate": "Battlemetrics Server {server} failed to update.", - "battlemetricsGlobalLoginCap": "GLOBAL LOGIN", - "battlemetricsGlobalLogoutCap": "GLOBAL LOGOUT", - "battlemetricsGlobalNameChangesCap": "GLOBAL NAME CHANGES", - "battlemetricsId": "BattlemetricsID", + "battlemetricsGlobalLoginCap": "KÜRESEL OTURUMU AÇ", + "battlemetricsGlobalLogoutCap": "KÜRESEL OTURUMU KAPAT", + "battlemetricsGlobalNameChangesCap": "KÜRESEL İSİM DEĞİŞİKLİKLERİ", + "battlemetricsId": "Battlemetrics Kimliği", "battlemetricsIdAndNameMissing": "Battlemetrics instance is missing id and name.", "battlemetricsInstanceCouldNotBeFound": "Battlemetrics Instance for {id} could not be found.", "battlemetricsOnlinePlayers": "Battlemetrics Online Players", @@ -55,8 +55,8 @@ "battlemetricsPlayersLogout": "Battlemetrics Players Logout", "battlemetricsPlayersNameChanged": "Battlemetrics Players Name Changed", "battlemetricsServerNameChanged": "Battlemetrics Server Name Changed", - "battlemetricsServerNameChangesCap": "SERVER NAME CHANGES", - "battlemetricsTrackerNameChangesCap": "TRACKER NAME CHANGES", + "battlemetricsServerNameChangesCap": "SUNUCU ADI DEĞİŞİKLİKLERİ", + "battlemetricsTrackerNameChangesCap": "TAKİPÇİ ADI DEĞİŞİKLİKLERİ", "battlemetricsTrackerPlayerNameChanged": "Battlemetrics Tracker Player Name Changed", "blacklist": "Kara liste", "boomBox": "Boom Box", @@ -64,15 +64,18 @@ "broadcaster": "Yayıncı", "buttonValueChange": "Button Interaction - VerifyId: {id}, Value: {value}.", "buy": "satın al", - "calculated": "Calculated", - "cargoAt": "At {location}.", - "cargoLeavingMapAt": "Cargo Ship is leaving the map at {location}.", - "cargoLocatedAt": "Cargo Ship is located at {location}.", + "calculated": "Hesaplandı", + "cargoAt": "{location} konumunda.", + "cargoLeavingMapAt": "Kargo Gemisi haritadan {location} konumundan ayrılıyor.", + "cargoLocatedAt": "Kargo Gemisi {location} konumunda.", "cargoNotCurrentlyOnMap": "Kargo gemisi haritada değil.", "cargoShipDetectedSetting": "Kargo gemisi görüldüğünde bildirim gönder.", + "cargoShipDockingAtHarbor": "Cargo ship just docked at the Harbor at {location}", + "cargoShipDockingAtHarborSetting": "When Cargo Ship is docked at a harbor, send a notification.", "cargoShipEgressSetting": "Kargo gemisi çıkış aşamasına geçtiğinde bildirim gönder.", "cargoShipEntersEgressStage": "Kargo gemisi {location} geldiğinde tahminen çıkış aşamasına geçecek.", "cargoShipEntersMap": "Kargo gemisi haritaya {location} konunmundan giriş yapacak.", + "cargoShipLeftHarbor": "Cargo ship just left the Harbor at {location}", "cargoShipLeftMap": "Kargo gemisi {location} konumundan haritadan ayrıldı.", "cargoShipLeftSetting": "Kargo gemisi haritadan ayrıldığında bildirim gönder.", "cargoShipLocated": "Kargo gemisi {location} konumunda.", @@ -157,6 +160,7 @@ "commandSyntaxTimers": "timers", "commandSyntaxTranslateFromTo": "trf", "commandSyntaxTranslateTo": "tr", + "commandSyntaxTravelingVendor": "vendor", "commandSyntaxTwig": "twig", "commandSyntaxUnmute": "unmute", "commandSyntaxUnsubscribe": "unsub", @@ -219,6 +223,7 @@ "commandsPlayersStatusDesc": "Search for players that are online/offline/any.", "commandsRecycleDesc": "Display the output of recycling an item.", "commandsRecycleQuantityDesc": "The quantity of items to recycle.", + "commandsRecycleRecyclerTypeDesc": "The recycler type (recycler, shredder, safe-zone-recycler).", "commandsResearchDesc": "Display the cost to research an item.", "commandsResetAlarmsDesc": "Alarm kanalını sıfırla.", "commandsResetDesc": "Discord kanallarını yenile.", @@ -304,7 +309,7 @@ "couldNotPerformMessagesFetch": "Mesajlar kanaldan alınamadı: {channel}", "couldNotRegisterSlashCommands": "Grup için komutlar kaydedilemedi: {guildId}. ", "couldNotSetParent": "Kanal için üstler ayarlanamadı: {channelId}", - "craft": "Craft", + "craft": "Üret", "crate": "Ganimet", "createGroupCap": "GRUP OLUŞTUR", "createTrackerCap": "TAKİPÇİ OLUŞTUR", @@ -329,22 +334,23 @@ "dash": "Kısa çizgi", "dayOfWipe": "Gün {day}", "deathCap": "ÖLÜM", - "decay": "Decay", + "decay": "Çürüme", "decayTimeForItem": "Decay time for {item} is {time}.", "decayingCap": "ERİME", "deleteUnreachableDevicesCap": "DELETE UNREACHABLE DEVICES", "despawnTime": "Despawn Time", "despawnTimeOfItem": "Despawn time of {item} is {time}.", + "deviceIsAlreadyOnOff": "{device} is already {status}.", "deviceIsCurrentlyOnOff": "{device} şu anda {status}.", "deviceWasTurnedOnOff": "{device} ayarlandı {status}.", "disabledCap": "DEVREDIŞI", "discoFloor": "Disko Zemini", "disconnectCap": "BAĞLANTIYI KES", - "disconnected": "Disconnected", + "disconnected": "Bağlantı Kesildi", "disconnectedCap": "BAĞLANTI KESİLDİ", "disconnectedFromServer": "SUNUCUDAN BAĞLANTI KESİLDİ.", "discordCap": "DISCORD", - "discordUsers": "Discord Users", + "discordUsers": "Discord Kullanıcısı", "displayInformationBattlemetricsAllOnlinePlayers": "Should all online players from Battlemetrics be displayed in the information channel?", "displayingMap": "{mapName} haritası gösteriliyor.", "displayingOnlinePlayers": "çevrimiçi oyuncular gösteriliyor.", @@ -353,7 +359,7 @@ "dot": "Nokta", "eastOfGrid": "Haritanın Doğusu", "editCap": "DÜZENLE", - "editing": "Editing", + "editing": "Düzenleniyor", "editingOf": "Editing of {entity}", "egressInTime": "Egress in {time} at {location}.", "eight": "Sekiz", @@ -372,7 +378,7 @@ "fcmCredentials": "FCM Bilgileri", "fcmListenerStartHost": "FCM-Takipçisi 5 saniye içinde bu grup için başlıyor: {guildId}, Steam64Id: {steamId}.", "fcmListenerStartLite": "FCM-Takipçisi Beta 5 saniye içinde bu grup için başlıyor: {guildId}, Steam64Id: {steamId}.", - "ferryTerminal": "Ferry Terminal", + "ferryTerminal": "Feribot Terminali", "fishingVillage": "Balıkçılık Köyü", "five": "Beş", "four": "Dört", @@ -403,9 +409,9 @@ "inGameEventInfo": "Oyun içi etkinlik biglisi", "inGameTeamNotificationsSetting": "Oyun içi takım arkadaşı bilgisi.", "inGameTime": "Oyun içi zaman: {time}.", - "index": "Index", + "index": "Dizin", "infoCap": "BİLGİ", - "inside": "Inside", + "inside": "İçinde", "interactionEditReplyFailed": "Düzenleme isteği başarısız oldu.: {error}", "interactionInvalidChannel": "Geçersiz bir kanaldan etkileşim.", "interactionReplyFailed": "Cevap isteği başarısız oldu.: {error}", @@ -431,13 +437,13 @@ "largeFishingVillage": "Büyük balıkçılık köyü", "largeOilRig": "Büyük sondaj kulesi", "largeWoodBox": "Büyük sandık", - "lastTrigger": "Last Trigger", + "lastTrigger": "Son Tetikleme", "launchSite": "Fırlatma Üssü", "leaderAlreadyLeader": "{name} zaten takım lideri.", "leaderCommandIsDisabled": "Takım lideri komutu ayarlardan devre dışı bırakılmış.", "leaderCommandOnlyWorks": "Takım liderdi komutu sadece lider {name} ise çalışır.", "leaderTransferred": "Takım lideri devredildi -> {name}.", - "leavingMapAt": "Leaving at {location}.", + "leavingMapAt": "{location} konumundan ayrılıyor.", "lessThanSign": "Küçüktür işareti", "lighthouse": "Deniz feneri", "linkCap": "LINK", @@ -463,7 +469,7 @@ "markerLocation": "[{location}] konumundaki {name} işaretçisi, {player}'dan {direction}° yönünde {distance}m.", "markerRemoved": "[{location}] konumundaki {name} işaretçisi kaldırıldı.", "message": "Mesaj", - "messageCap": "MESSAGE", + "messageCap": "MESAJ", "messageDeletedIn30": "Bu mesaj 30 saniye içinde silinecektir.", "messageEditFailed": "Mesaj düzenleme başarısız: {error}", "messageReplyFailed": "Mesaj cevabı başarısız: {error}", @@ -471,7 +477,7 @@ "messageWasSent": "Mesaj gönderildi.", "militaryTunnel": "Askeri Tünel", "miningOutpost": "Madencilik", - "missileSilo": "Missile Silo", + "missileSilo": "Füze Silosu", "missingArguments": "Kayıp argümanlar.", "missingPermission": "Bunu yapmak için izniniz yok.", "missingTimerMessage": "Kayıp zamanlayıcı mesajı.", @@ -481,7 +487,7 @@ "mutedCap": "SUSTURULDU", "name": "Ad", "nameChangeHistory": "Ad Değiştirme Geçmiş", - "new": "New", + "new": "Yeni", "newVendingMachine": "{location} konumunda yeni market açıldı.", "newsCap": "HABERLER", "noActiveTimers": "Aktif bir zamanlayıcı yok.", @@ -523,14 +529,14 @@ "noteIdWasRemoved": "Not Kimliği: {id} silindi.", "noteSaved": "Not kaydedildi.", "offCap": "KAPALI", - "offline": "Offline", - "offlineTime": "Offline time", + "offline": "Çevrim dışı", + "offlineTime": "Çevrim dışı zamanı", "oilRig": "Sondaj Kulesi", - "old": "Old", + "old": "Eski", "onCap": "AÇIK", "one": "Bir", - "online": "Online", - "onlineTime": "Online time", + "online": "Çevrim içi", + "onlineTime": "Çevrim içi süresi", "onlyOneInTeam": "Takımda sadece sen varsın.", "outpost": "Karakol", "outside": "Outside", @@ -548,26 +554,26 @@ "percentSign": "Yüzde işareti", "pipe": "Boru", "playerHasBeenAliveFor": "{name}, {time} zamandır hayatta.", - "playerId": "Player ID", + "playerId": "Oyuncu Kimliği", "playerJoinedTheTeam": "{name} takıma katıldı.", "playerJustConnected": "{name} şimdi bağlandı.", "playerJustConnectedTo": "{name} sunucuya bağlandı - {server}.", - "playerJustConnectedTracker": "{name} just connected from tracker {tracker}.", + "playerJustConnectedTracker": "{name} az önce {tracker} izleyicisinden bağlandı.", "playerJustDied": "{name} öldü, {location}.", "playerJustDisconnected": "{name} oyundan çıktı.", "playerJustDisconnectedFrom": "{name} oyundan çıktı - {server}.", - "playerJustDisconnectedTracker": "{name} just disconnected from tracker {tracker}.", + "playerJustDisconnectedTracker": "{name} izleyicisi'nin {tracker} ile olan bağlantısı az önce kesildi.", "playerJustReturned": "{name} şimdi döndü - ({time}).", "playerJustWentAfk": "{name} AFK oldu.", "playerLeftTheTeam": "{name} takımdan ayrıldı.", "playerNotPairedWithServer": "{name} sunucuyla eşleştirilmediğinden Lider komutu çalışmıyor.", "players": "Oyuncular", - "playersSearch": "Players Search", + "playersSearch": "Oyuncu Ara", "plusSign": "Artı işareti", "populationPlayers": "Oyuncu: ({current}/{max})", "populationQueue": "{number} oyuncu sırada.", "powerPlant": "Nükleer Santral", - "profile": "Profile", + "profile": "Profil", "proxLocation": "{name}, {caller} {direction}° [{location}] yönünde {distance}m", "quantity": "Miktar", "questionMark": "Soru İşareti", @@ -575,27 +581,29 @@ "ratelimited": "HIZ LİMİTİ", "reconnectingCap": "TEKRAR BAĞLANILIYOR", "reconnectingToServer": "SUNUCUYA TEKRAR BAĞLANILIYOR...", - "recycle": "Recycle", + "recycle": "Geri Dönüştür", "recycleCap": "DÖNÜŞTÜRÜCÜ", + "recycler": "Geri Dönüştürücü", "remain": "kaldı", "removePlayerCap": "OYUNCU SİL", "removeSwitchCap": "ŞALTER SİL", "removedSubscribeItem": "{name} öğesi abonelikten kaldırıldı", - "research": "Research", - "researchTable": "Research Table", + "research": "Araştır", + "researchTable": "Araştırma Masası", "resetSuccess": "Discord başarıyla yenilendi.", "responseContainError": "Yanıt bu hatayı taşıyor: {error}.", "responseIsEmpty": "Cevap boş.", "responseIsUndefined": "Cevap tanımsız.", "responseTimeout": "Cevap beklenirken zamanaşımı.", "resultRecycling": "Dönüştürme sonucu", - "roleCleared": "rustplusplus role has been cleared.", + "roleCleared": "rustplusplus rolü temizlendi.", "roleSet": "rustplusplus role has been set to {name}.", "rustMonument": "Rust Monument", "rustplusOperational": "RUSTPLUS OPERASYONEL.", + "safe-zone-recycler": "Safe Zone Recycler", "samsite": "SAM Site", "satelliteDish": "Uydu", - "scrap": "Scrap", + "scrap": "Hurda", "searchResult": "Arama Sonuçları: **{name}**", "second": "{second} saniye", "secondCommandDelay": "{second} saniye gecikme.", @@ -606,16 +614,16 @@ "selectLanguageSetting": "Botun kullanacağı dili seçin:", "selectMenuValueChange": "Select Menu Interaction - VerifyId: {id}, Value: {value}.", "selectTrademarkSetting": "Oyun içi mesaj markasını seçin.", - "sell": "sell", + "sell": "sat", "semicolon": "Noktalı virgül", "sentTextToSpeech": "Metin-Konuşma Gönderildi.", "server": "Sunucu", - "serverId": "Server ID", + "serverId": "Sunucu Kimliği", "serverInfo": "Sunucu Bilgisi", "serverInvalid": "Bağlanılmaya çalışılan sunucu geçersiz olabilir tekrardan eşleştirme yapın.", "serverJustOffline": "Sunucu kapandı.", "serverJustOnline": "Sunucu açıldı.", - "serverStatus": "Server Status", + "serverStatus": "Sunucu Durumu", "serviceUnavailable": "Servis Mevcut Değil: {error}", "setBotLanguage": "Bot dilini ayarla: {language}.", "seven": "Yedi", @@ -627,8 +635,9 @@ "shouldSmartAlarmNotifyNotConnectedSetting": "Akıllı alarmlar farklı sunucuya ait olsada haber versin mi?", "shouldSmartAlarmsNotifyInGameSetting": "Akıllı Alamlar oyun içi bildirim göndersin mi?", "shouldSmartSwitchNotifyInGameWhenChangedFromDiscord": "Should Smart Switches and Smart Switch Groups notify In-Game when they are changed from discord?", - "showingBlacklist": "Showing the blacklist.", + "showingBlacklist": "Kara liste gösteriliyor.", "showingSubscriptionList": "Abonelik listesi gösteriliyor.", + "shredder": "Parçalayıcı", "sirenLight": "Siren Işığı", "six": "6", "slash": "Eğik Çizgi", @@ -659,18 +668,18 @@ "southOfGrid": "Haritanın Güneyi", "southWest": "Güney Batı", "sprinkler": "Yağmurluk", - "stackSize": "Stack Size", + "stackSize": "Yığın Boyutu", "stackSizeOfItem": "Stack size of {item} is {quantity}x.", "status": "Durum", "statusNotConnectedToServer": "**DURUM** `SUNUCUYA BAĞLI DEĞİL!`", "statusNotElectronicallyConnected": "**DURUM** `ELEKTRİK İLE BAĞLI DEĞİL`", "statusNotFound": "**DURUM**: BULUNAMADI", - "steamId": "SteamID", + "steamId": "Steam Kimliği", "stoneQuarry": "Taş Madeni", "storageMonitor": "Depolama Monitörü", "storageMonitorEditSuccess": "Depolama Monitörü başarıyla düzenlendi - {name}.", - "streamerMode": "Streamer Mode", - "subscribeToChangesBattlemetrics": "Subscribe to different changes on Battlemetrics.", + "streamerMode": "Yayıncı Modu", + "subscribeToChangesBattlemetrics": "Battlemetrics'teki farklı değişikliklere abone olun.", "subscriptionList": "Abonelik listesi", "subscriptionListEmpty": "Öge abonelik listesi boş.", "sulfurQuarry": "Sülfür Madeni", @@ -678,9 +687,9 @@ "teamMember": "Takım Üyesi", "teamMemberInfo": "Takım Üyesi Bilgisi", "theDome": "Küre", - "theIdOfTheItem": "The id of the item.", - "theNameOfTheItem": "The name of the item.", - "theNameOfThePlayer": "The name of the player.", + "theIdOfTheItem": "Öğenin kimliği.", + "theNameOfTheItem": "Öğenin adı.", + "theNameOfThePlayer": "Oyuncunun adı.", "three": "Üç", "tilde": "Yaklaşık", "time": "Saat", @@ -700,6 +709,7 @@ "timeSinceLastSinceDestroyedLong": "{time1} since the last Patrol Helicopter was on the map, {time2} since it last got downed{location}.", "timeSinceLastSinceDestroyedShort": "{time1} since last.\n{time2} since destroyed{location}.", "timeSincePatrolHelicopterWasOnMap": "{time} önce helikopter haritaydı.", + "timeSinceTravelingVendorWasOnMap": "{time} since the Traveling Vendor was on the map.", "timeSinceWipe": "{time} önce wipe atıldı.", "timeTill": "Süre kaldı {event}", "timeTillDaylight": "{time} sonra gündüz olacak.", @@ -713,12 +723,22 @@ "timerSet": "Zamanlayıcı ayarlandı - {time}.", "tokensDidNotReplenish": "Tokenler zamanında yenilenmedi.", "toolCupboard": "Alet Dolabı", - "total": "Total", - "tracker": "Tracker", + "total": "Toplam", + "tracker": "İzleyici", "trackerAddPlayerDesc": "Oyuncu Ekle - {tracker}", "trackerRemovePlayerDesc": "Oyuncu Sil - {tracker}", "trademarkShownBeforeMessage": "{trademark} mesajlardan önce gösterilecek.", "trainYard": "Tren İstasyonu", + "travelingVendor": "Traveling Vendor", + "travelingVendorDetectedSetting": "When the Traveling Vendor is detected, send a notification.", + "travelingVendorHaltedAt": "The Traveling Vendor stopped at {location}.", + "travelingVendorHaltedSetting": "When the Traveling Vendor stops moving, send a notification.", + "travelingVendorLeftSetting": "When the Traveling Vendor left the map, send a notification.", + "travelingVendorLocatedAt": "The Traveling Vendor is located at {location}.", + "travelingVendorLeftMap": "The Traveling Vendor just left the map at {location}.", + "travelingVendorNotCurrentlyOnMap": "The Traveling Vendor is not currently on the map.", + "travelingVendorResumedAt": "The Traveling Vendor resumed moving at {location}.", + "travelingVendorSpawnedAt": "The Traveling Vendor spawned at {location}.", "turnOffCap": "AKTİF", "turnOnCap": "DEVREDIŞI", "turningGroupOnOff": "{group} ayarlandı {status}.", @@ -726,23 +746,23 @@ "type": "Tip", "unavailable": "Mevcut değil", "underscore": "Vurgu", - "underwater": "Underwater", + "underwater": "Sualtı", "underwaterLab": "Su altı laboratuvarı", "unhandledRejection": "İşlenmemiş Hata: {error}", "unknown": "Bilinmeyen", "unknownInteraction": "Bilinmeyen etkileşim...", "unmutedCap": "SUSTURULMAMIŞ", - "updateCap": "UPDATE", + "updateCap": "GÜNCELLE", "upkeep": "Bakım Masrafı", "upkeepForItem": "Upkeep for {item} is {cost}.", - "userAddedToBlacklist": "{user} was added to blacklist.", - "userAlreadyInBlacklist": "{user} already in blacklist.", + "userAddedToBlacklist": "{user} kara listeye eklendi.", + "userAlreadyInBlacklist": "{user} zaten kara listede.", "userButtonInteraction": "Button Interaction - Guild: {guild}, Channel: {channel}, User: {user}, CustomId: {customid}, VerifyId: {id}.", "userButtonInteractionSuccess": "Button Interaction - VerifyId: {id} SUCCESS", "userJustConnected": "{name} şimdi bağlandı.", "userModalInteraction": "Modal Interaction - Guild: {guild}, Channel: {channel}, User: {user}, CustomId: {customid}, VerifyId: {id}.", "userModalInteractionSuccess": "Modal Interaction - VerifyId: {id} SUCCESS", - "userNotInBlacklist": "{user} not in blacklist.", + "userNotInBlacklist": "{user} kara listede değil.", "userNotRegistered": "{user} kayıtlı değil.", "userPartOfBlacklist": "VerifyId: {id}, {user} is part of the blacklist.", "userPartOfBlacklistDiscord": "Blacklisted User! Guild: {guild}, Channel: {channel}, User: {user}, Message: {message}.", @@ -753,10 +773,10 @@ "userSelectMenuInteractionSuccess": "Select Menu Interaction - VerifyId: {id} SUCCESS", "userTurnedOnOffSmartSwitchFromDiscord": "{user} turned Smart Switch {name} {status} from discord.", "userTurnedOnOffSmartSwitchGroupFromDiscord": "{user} turned Smart Switch Group {name} {status} from discord.", - "value": "Value", + "value": "Değer", "vendingMachine": "Market", "vendingMachineDetectedSetting": "Yeni market açıldığında bildirim gönder.", - "voiceCap": "VOICE", + "voiceCap": "SES", "warningCap": "UYARI", "waterTreatmentPlant": "Su Arıtma Tesisi", "websiteCap": "WEBSITE", @@ -764,7 +784,7 @@ "westOfGrid": "Haritanın Batısı", "wipe": "Wipe", "wipeDetected": "Wipe tespit edildi!", - "yield": "Yield", + "yield": "Teslim Ol", "youAreAlreadyLeader": "Zaten lidersin.", "youAreNotPairedWithServer": "Sunucuyla eşleşmediğiniz için lider komutu çalışmıyor." } \ No newline at end of file diff --git a/src/resources/images/events/traveling_vendor_logo.png b/src/resources/images/events/traveling_vendor_logo.png new file mode 100644 index 000000000..68132296e Binary files /dev/null and b/src/resources/images/events/traveling_vendor_logo.png differ diff --git a/src/staticFiles/cctv.json b/src/staticFiles/cctv.json index e88d6a626..3fff4ea33 100644 --- a/src/staticFiles/cctv.json +++ b/src/staticFiles/cctv.json @@ -91,5 +91,24 @@ "TECHCABINET\\*\\*\\*\\*" ], "dynamic": true + }, + "Cargo Ship": { + "codes": [ + "CARGODECK", + "CARGOBRIDGE", + "CARGOSTERN", + "CARGOHOLD1", + "CARGOHOLD2" + ], + "dynamic": false + }, + "Ferry Terminal": { + "codes": [ + "FERRYDOCK", + "FERRYLOGISTICS", + "FERRYPARKING", + "FERRYUTILITIES" + ], + "dynamic": false } } \ No newline at end of file diff --git a/src/staticFiles/items.json b/src/staticFiles/items.json index d4d0cae00..4e479fd8c 100644 --- a/src/staticFiles/items.json +++ b/src/staticFiles/items.json @@ -9,6 +9,11 @@ "name": "Card Movember Moustache", "description": "A fake moustache for Movember" }, + "4384538": { + "shortname": "pie.apple", + "name": "Apple Pie", + "description": "A delicious apple pie, always too hot. Provides a boost to hunger, health and hydration. Gives better night vision, including tree markings and ore hotspots, for a short time." + }, "14241751": { "shortname": "arrow.fire", "name": "Fire Arrow", @@ -22,7 +27,7 @@ "20489901": { "shortname": "twitchsunglasses", "name": "Purple Sunglasses", - "description": "Sunglasses - Gained from Rust's first Twitch drop event." + "description": "Sunglasses - Gained from Rust's first Twitch drop." }, "21402876": { "shortname": "burlap.gloves.new", @@ -57,7 +62,7 @@ "39600618": { "shortname": "microphonestand", "name": "Microphone Stand", - "description": "A powered microphone that lets you broadcast your voice. Press [+reload] to change voice mode between high and low pitch." + "description": "A powered microphone that lets you broadcast your voice. Press [+attack2] to change voice mode between high and low pitch." }, "42535890": { "shortname": "sign.neon.125x215.animated", @@ -69,10 +74,20 @@ "name": "Incendiary Pistol Bullet", "description": "Slower moving ammunition that deals fire damage. There's a small chance it will start a fire." }, + "54265286": { + "shortname": "pie.crocodile", + "name": "Crocodile Pie", + "description": "A pie made from crocodile meat, may cause a reptile dysfunction. Boosts hunger, health and hydration. Gives better night vision, including tree markings and ore hotspots, for a short time." + }, + "54436981": { + "shortname": "electric.fairylights", + "name": "Fairy Lights", + "description": "A wire of small fairy bulbs, can be deployed point by point to light up your base." + }, "60528587": { "shortname": "horse.armor.roadsign", "name": "Roadsign Horse Armor", - "description": "A set of roadsign armor for a horse" + "description": "A full body armor for a horse. Provides strong protection for you and your steed, at the cost of greatly reduced movement speed." }, "62577426": { "shortname": "photo", @@ -99,6 +114,11 @@ "name": "Yellow ID Tag", "description": "Yellow ID Tag" }, + "82772055": { + "shortname": "horse", + "name": "Horse", + "description": "Horse" + }, "86840834": { "shortname": "hazmatsuit_scientist_nvgm", "name": "NVGM Scientist Suit", @@ -109,6 +129,11 @@ "name": "Metal Pipe", "description": "Metal Pipe." }, + "97903330": { + "shortname": "purecraftingtea_quality", + "name": "Pure Crafting Quality Tea", + "description": "A pure crafting tea. provides hydration and increases the chances of a higher quality crafting outcome for a short time." + }, "98508942": { "shortname": "sign.pictureframe.xxl", "name": "XXL Picture Frame", @@ -119,6 +144,11 @@ "name": "High External Wooden Wall", "description": "A high wooden wall used to keep people off your property." }, + "104856514": { + "shortname": "electric.bulbstringlights", + "name": "Bulb String Lights", + "description": "A string of glowing bulbs, can be deployed point by point to light up your base." + }, "106959911": { "shortname": "frankensteins.monster.01.legs", "name": "Light Frankenstein Legs", @@ -129,6 +159,11 @@ "name": "Ice Metal Facemask", "description": "A protective facemask which provides the user with excellent head protection from all forms of attacks." }, + "120820987": { + "shortname": "pie.chicken", + "name": "Chicken Pie", + "description": "Just like mom used to make. Provides a boost to hunger, health and hydration. Increases the chance of better genes from crops for short time." + }, "121049755": { "shortname": "sign.pictureframe.tall", "name": "Tall Picture Frame", @@ -147,7 +182,12 @@ "143803535": { "shortname": "grenade.f1", "name": "F1 Grenade", - "description": "Reliable explosive device." + "description": "A reliable military grenade that can be thrown a short distance. Deadly at close range on detonation." + }, + "158303804": { + "shortname": "knife.bone.obsidian", + "name": "Obsidian Bone Knife", + "description": "Melee weapon crafted from obsidian. Good for harvesting carcases." }, "170758448": { "shortname": "vehicle.1mod.cockpit.with.engine", @@ -161,8 +201,8 @@ }, "174866732": { "shortname": "weapon.mod.8x.scope", - "name": "16x Zoom Scope", - "description": "A large 16x zoom scope." + "name": "Variable Zoom Scope", + "description": "A large military-grade scope that can be configured from 4x zoom to 16x zoom." }, "176787552": { "shortname": "riflebody", @@ -179,6 +219,11 @@ "name": "Pink ID Tag", "description": "Pink ID Tag" }, + "184516676": { + "shortname": "beehive", + "name": "Beehive", + "description": "Hand made beehive, place a nucleus inside to raise your own bees and produce honeycomb. Happy bees will make honeycomb more quickly." + }, "185586769": { "shortname": "innertube.horse", "name": "Inner Tube", @@ -192,17 +237,22 @@ "192249897": { "shortname": "rockingchair.rockingchair3", "name": "Green", - "description": "" + "description": "A rocking chair that responds to your input. Don't fire whilst seated." }, "196700171": { "shortname": "attire.hide.vest", "name": "Hide Vest", - "description": "A Vest made from the hide of an animal." + "description": "Simple hide vest, made with common materials. Basic all-round protection." + }, + "196784377": { + "shortname": "improvised.shield", + "name": "Improvised Shield", + "description": "A makeshift metal shield, sturdy but only protects a small area. Usable with single handed weapons and tools." }, "198438816": { "shortname": "vending.machine", "name": "Vending Machine", - "description": "Trade your goods with other players safely by creating sell and buy orders. \r\n\r\nIf a raider gains access to the rear panel, they will have free reign over all of your goodies. Keep it safe." + "description": "Trade your goods with other players safely by creating sell and buy orders. \n\nIf a raider gains access to the rear panel, they will have free reign over all of your goodies. Keep it safe." }, "200773292": { "shortname": "hammer", @@ -224,6 +274,11 @@ "name": "Head Bag", "description": "A sack containing the head of a defeated foe. Can be added to trophies." }, + "210787554": { + "shortname": "iotable", + "name": "Engineering Workbench", + "description": "This allows you to craft and unlock electrical, water and industrial items" + }, "215754713": { "shortname": "arrow.bone", "name": "Bone Arrow", @@ -232,7 +287,7 @@ "223891266": { "shortname": "tshirt", "name": "T-Shirt", - "description": "A t-shirt with very short sleeves." + "description": "A tshirt, simple undergarment. Good protection from damage and the elements." }, "236677901": { "shortname": "lumberjack.pickaxe", @@ -242,7 +297,7 @@ "237239288": { "shortname": "pants", "name": "Pants", - "description": "Pants." + "description": "A pair of pants, highly capable undergarment for your legs. Great all round protection from damage and the elements." }, "240752557": { "shortname": "gunrack_tall.horizontal", @@ -259,10 +314,15 @@ "name": "Frontier Mirror Large", "description": "A large wooden frontier themed mirror" }, + "248643189": { + "shortname": "bigcatmeat.spoiled", + "name": "Spoiled Big Cat Meat", + "description": "Spoiled Big Cat Meat. Consuming will damage your health." + }, "254522515": { "shortname": "largemedkit", "name": "Large Medkit", - "description": "A large medkit." + "description": "A large medkit that heals you to max health over time and stops any bleeding instantly.\n\nGuarantees 100% recovery from the wounded state if placed in your toolbar." }, "261913429": { "shortname": "firework.volcano", @@ -272,7 +332,7 @@ "263834859": { "shortname": "scraptea", "name": "Basic Scrap Tea", - "description": "A tea that increases the amount of scrap you receive from barrels." + "description": "A basic scrap tea, temporarily increases the amount of scrap you receive from barrels a small amount." }, "268565518": { "shortname": "vehicle.1mod.storage", @@ -282,7 +342,7 @@ "271048478": { "shortname": "hat.ratmask", "name": "Rat Mask", - "description": "A Beautifully crafted bronze and gold Rat mask to celebrate the 2020 Lunar New Year" + "description": "A Beautifully crafted bronze and gold Rat mask to celebrate the 2020 Lunar New Year. This item replaces the wolf headdress." }, "273172220": { "shortname": "fun.trumpet", @@ -299,6 +359,11 @@ "name": "Mummy Suit", "description": "A mummy suit" }, + "281099360": { + "shortname": "bread.loaf", + "name": "Bread Loaf", + "description": "A loaf of bread, eating it provides a boost to health, hunger and hydration. Feeding to a horse will provide a boost to its digestion and dung production for a short time." + }, "282103175": { "shortname": "giantlollipops", "name": "Giant Lollipop Decor", @@ -317,7 +382,7 @@ "296519935": { "shortname": "diving.fins", "name": "Diving Fins", - "description": "Diving Fins which greatly increase underwater movement" + "description": "Diving Fins. Significantly boosts your speed underwater but greatly reduces mobility on land." }, "301063058": { "shortname": "wantedposter.wantedposter2", @@ -329,11 +394,21 @@ "name": "Flare", "description": "Light up the night sky with this brand new red flare!" }, + "309017792": { + "shortname": "pie.bigcat", + "name": "Big Cat Pie", + "description": "A pie made from jungle cat meat, purrfect temperature. Boosts hunger, health and hydration. Shows nearby animal tracks for a short time." + }, "317398316": { "shortname": "metal.refined", "name": "High Quality Metal", "description": "High quality metal suitable for armor and weapons construction." }, + "320438357": { + "shortname": "pie.hunters", + "name": "Hunters Pie", + "description": "Tasty hunters pie, made with real deer. Provides a boost to hunger, health and hydration. Reduces bleeding for a short time." + }, "340210699": { "shortname": "frontiermirror.small", "name": "Frontier Mirror Small", @@ -369,6 +444,11 @@ "name": "Shotgun Trap", "description": "A shotgun trap triggered by movement, place near doorways and load with handmade shells." }, + "355877490": { + "shortname": "minigunammopack", + "name": "Minigun Ammo Pack", + "description": "A backpack designed to store ammunition for a minigun." + }, "359723196": { "shortname": "arcade.machine.chippy", "name": "Chippy Arcade Game", @@ -379,15 +459,45 @@ "name": "Hose Tool", "description": "A tool used to make fluid connections between objects. Aim at an object and click on an input/output handle, then click on another object's input/output handle to form a connection." }, + "368008432": { + "shortname": "craftingtea_quality", + "name": "Basic Crafting Quality Tea", + "description": "A basic crafting tea. provides hydration and increases the chances of a higher quality crafting outcome for a short time." + }, + "375473148": { + "shortname": "scraptransportheli", + "name": "Scrap Transport Helicopter", + "description": null + }, + "377750553": { + "shortname": "pureharvestingtea", + "name": "Pure Harvesting Tea", + "description": "A pure harvesting tea, provides hydration and temporarily increases the amount of resources you receive from harvesting corpses a large amount." + }, + "385099196": { + "shortname": "4module car chassis", + "name": "4 Module Car Chassis", + "description": "4 Module Car Chassis" + }, "390728933": { "shortname": "clone.yellow.berry", "name": "Yellow Berry Clone", "description": "A clipping of a Yellow Berry Plant." }, + "392828520": { + "shortname": "crocodilemeat.cooked", + "name": "Cooked Crocodile Meat", + "description": "Delicious Crocodile Meat, Eating it will restore some health, hunger, and thirst." + }, + "405904531": { + "shortname": "ball", + "name": "Soccer Ball", + "description": "Soccer Ball" + }, "418081930": { "shortname": "wood.armor.jacket", "name": "Wood Chestplate", - "description": "A shoddy piece of body armor made from Wood and rope." + "description": "A shoddy piece of body armor made from simple materials, provides some basic protection from melee and ranged attacks." }, "442289265": { "shortname": "weapon.mod.holosight", @@ -397,7 +507,7 @@ "442886268": { "shortname": "rocket.launcher", "name": "Rocket Launcher", - "description": "Shoots rockets slightly farther than North Korea." + "description": "Unmatched craftsmanship meets devastating firepower." }, "443432036": { "shortname": "fluid.switch", @@ -419,6 +529,11 @@ "name": "Twitch Rivals Hazmat Suit", "description": "A purple hazmat suit made from radiation resistant rubber." }, + "472505338": { + "shortname": "rifle.ak.med", + "name": "Medieval AR", + "description": "Medieval themed high damage machine rifle." + }, "476066818": { "shortname": "cassette", "name": "Cassette - Long", @@ -449,20 +564,45 @@ "name": "RAND Switch", "description": "This switch will allow passthrough based on a random number. Each time the SET input receives power it will roll true or false to allow passthrough" }, + "494161326": { + "shortname": "rocket.launcher.rpg7", + "name": "RPG Launcher", + "description": "Unmatched craftsmanship meets devastating firepower." + }, + "504109620": { + "shortname": "sculpture.ice", + "name": "Ice Sculpture", + "description": "An block of ice you can sculpt." + }, + "507284030": { + "shortname": "cocoknight.armor.pants", + "name": "Coconut Armor Pants", + "description": "A shoddy piece of leg armor made from coconut and plants, provides some basic protection from melee and ranged attacks." + }, "524678627": { "shortname": "scraptea.advanced", "name": "Advanced Scrap Tea", - "description": "A tea that increases the amount of scrap you receive from barrels." + "description": "An advanced scrap tea, temporarily increases the amount of scrap you receive from barrels a moderate amount." }, "528668503": { "shortname": "flameturret", "name": "Flame Turret", "description": "Automated Flame turret. Requires Low Grade Fuel. Sprays flames when triggered." }, + "537946062": { + "shortname": "pilot.hazmat.box.wooden", + "name": "Flight Recorder Box", + "description": "Keep your things in this Flight Recorder box. Stores up to 18 items." + }, + "547862680": { + "shortname": "knighttorso.armour", + "name": "Knights armour cuirass", + "description": "A well made collection of scrap metal formed into a knights armour." + }, "550753330": { "shortname": "ammo.snowballgun", - "name": "", - "description": "" + "name": "Snowball Gun Ammo", + "description": null }, "553270375": { "shortname": "electric.battery.rechargable.large", @@ -474,6 +614,11 @@ "name": "Skull Fire Pit", "description": "Enjoy burning your enemies remnants to ashes with this Halloween exclusive! Provides warmth and light, and you can cook with it." }, + "553967074": { + "shortname": "wallpaper.wall", + "name": "Wallpaper Wall", + "description": null + }, "559147458": { "shortname": "fishtrap.small", "name": "Survival Fish Trap", @@ -486,7 +631,7 @@ }, "567871954": { "shortname": "secretlabchair", - "name": "Secret Lab Chair", + "name": "Secretlab Chair", "description": "A luxurious, comfortable chair for long sessions of CCTV watching." }, "573676040": { @@ -514,6 +659,11 @@ "name": "Table", "description": "Every home needs a table. A decorative item which provides comfort when in close proximity." }, + "594041190": { + "shortname": "compass", + "name": "Compass", + "description": "A handy tool which indicates which direction you're facing. Will reveal your location on the map in Hardcore mode if equipped on your belt." + }, "596469572": { "shortname": "rf.detonator", "name": "RF Transmitter", @@ -532,7 +682,7 @@ "603811464": { "shortname": "maxhealthtea.advanced", "name": "Advanced Max Health Tea", - "description": "A tea that increases your maximum health." + "description": "An advanced health tea, provides hydration and temporarily boosts maximum health a moderate amount." }, "605467368": { "shortname": "ammo.rifle.incendiary", @@ -542,7 +692,7 @@ "607400343": { "shortname": "legacy.shelter.wood", "name": "Legacy Wood Shelter", - "description": "The classic s*** shack. A great starter base for any fresh spawn. There is a limit to how many you can place." + "description": "The classic s*** shack. A great starter base for any fresh spawn. You can only have one shelter deployed at anytime." }, "609049394": { "shortname": "battery.small", @@ -569,21 +719,41 @@ "name": "Raw Pork", "description": "Raw pork. Eating it will damage your health, try cooking it first." }, + "625599716": { + "shortname": "metal.shield", + "name": "Metal Shield", + "description": "A large sturdy metal shield, keeps arrows and bullets at bay. Usable with single handed weapons and tools." + }, "634478325": { "shortname": "cctv.camera", "name": "CCTV Camera", "description": "A CCTV Camera system can be used for realtime surveillance and security around your base when powered and paired with the Computer Station." }, + "640470230": { + "shortname": "electric.fluorescentlight.ceiling", + "name": "Ceiling Fluorescent Light", + "description": "A flicker-free fluorescent light." + }, "642482233": { "shortname": "sticks", "name": "Sticks", "description": "Some long, some short." }, + "647240052": { + "shortname": "triangle.rail.road.planter", + "name": "Triangle Rail Road Planter", + "description": "A triangle planter with enough room to plant 4 seeds." + }, "649912614": { "shortname": "pistol.revolver", "name": "Revolver", "description": "A standard eight shot revolver." }, + "652793345": { + "shortname": "krieg.storage.horizontal", + "name": "Krieg Storage Crates", + "description": "Military-grade crates designed for efficient storage and durability. A staple of any well-supplied outpost." + }, "656371026": { "shortname": "carburetor3", "name": "High Quality Carburetor", @@ -599,6 +769,11 @@ "name": "Low Quality Carburetor", "description": "A low quality carburetor for a combustion engine. Mixes air and fuel to the proper ratio." }, + "656829501": { + "shortname": "electric.wallcabinet", + "name": "Wall Cabinet", + "description": "A cabinet with a shelf for small items." + }, "657352755": { "shortname": "beachtable", "name": "Beach Table", @@ -636,24 +811,39 @@ }, "695450239": { "shortname": "spear.cny", - "name": "Chinese new year spear", - "description": "A Chinese new year themed metal spear" + "name": "Lunar New Year Spear", + "description": "A Chinese themed New Year themed metal Spear" }, "696029452": { "shortname": "map", "name": "Paper Map", "description": "Helps you figure out where you are. You can annotate the map by right-clicking and drawing on it.\n\n\nDrag the map into your belt bar to make it active. You will then be able to view the map by holding down the map button (G by default)." }, + "696029539": { + "shortname": "hab", + "name": "Hot Air Balloon", + "description": "A Hot Air Balloon." + }, "699075597": { "shortname": "woodcross", "name": "Wooden Cross", "description": "A wooden cross marking the remains of an unknown soul" }, + "703057617": { + "shortname": "military flamethrower", + "name": "Military Flame Thrower", + "description": "A Military grade flamethrower. Uses low grade fuel as ammunition." + }, "709206314": { "shortname": "hat.tigermask", "name": "Tiger Mask", "description": "A special tiger mask to celebrate Chinese New Year" }, + "721798950": { + "shortname": "vehicle.car_radio", + "name": "Car Radio", + "description": "A small radio to use in cars. Will only work while the car is turned on." + }, "722955039": { "shortname": "gun.water", "name": "Water Gun", @@ -662,7 +852,12 @@ "723407026": { "shortname": "woodmirror.standing", "name": "Wood Mirror Standing", - "description": "A standing wooden mirror" + "description": "A standing wooden frontier themed mirror" + }, + "734320711": { + "shortname": "orchid", + "name": "Orchid", + "description": "Smells nice." }, "742745918": { "shortname": "industrial.splitter", @@ -684,6 +879,11 @@ "name": "Medium Present", "description": "A medium present, might be good! Collect 5 to upgrade to a larger present." }, + "756890702": { + "shortname": "wall.external.high.adobe", + "name": "High External Adobe Wall", + "description": "A high stone wall used to keep people off your property." + }, "762289806": { "shortname": "electric.sirenlight", "name": "Siren Light", @@ -699,10 +899,15 @@ "name": "Pistol Bullet", "description": "Ammunition for a Pistol. Loses velocity when fired over long distances resulting in slightly decreased damage." }, + "789333045": { + "shortname": "sunken.knife", + "name": "Sunken Combat Knife", + "description": "A corroded sunken knife designed for close combat engagements, can attack while sprinting. Best in class at harvesting flesh." + }, "794356786": { "shortname": "attire.hide.boots", "name": "Hide Boots", - "description": "Boots made from the hide of an animal." + "description": "Simple hide boots, made with common materials. Basic all-round protection." }, "794443127": { "shortname": "xmas.tree", @@ -717,7 +922,7 @@ "795371088": { "shortname": "shotgun.pump", "name": "Pump Shotgun", - "description": "A Shotgun. Fires six rounds." + "description": "A Shotgun. Fires 8 rounds." }, "803222026": { "shortname": "box.repair.bench", @@ -727,13 +932,18 @@ "803954639": { "shortname": "seed.blue.berry", "name": "Blue Berry Seed", - "description": "These blue berry seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more Corn and faster groth." + "description": "These blue berry seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more berries and faster growth." }, "809199956": { "shortname": "gravestone", "name": "Gravestone", "description": "A Gravestone marking the remains of an unknown soul" }, + "809689733": { + "shortname": "mummymask", + "name": "Mummy Mask", + "description": "A classic halloween costume mask which provides decent protection." + }, "809942731": { "shortname": "scarecrowhead", "name": "Scarecrow Wrap", @@ -744,16 +954,26 @@ "name": "Cooked Wolf Meat", "description": "Cooked Wolf Meat. Eating it will restore some health, hunger, and thirst." }, + "814297925": { + "shortname": "medieval.box.wooden.large", + "name": "Medieval Large Wood Box", + "description": "Keep your things in this medieval themed wooden storage box. Stores up to 48 items." + }, "818733919": { "shortname": "door.hinged.industrial.a", "name": "Industrial Door", - "description": "Medium strength door, vulnerable to explosives." + "description": "A red industrial door with a window." }, "818877484": { "shortname": "pistol.semiauto", "name": "Semi-Automatic Pistol", "description": "A semi-automatic pistol, fires rapidly and with good accuracy." }, + "821588319": { + "shortname": "bicycle", + "name": "Bicycle", + "description": "A pedal bike." + }, "826309791": { "shortname": "sign.post.town.roof", "name": "Two Sided Town Sign Post", @@ -762,17 +982,17 @@ "830839496": { "shortname": "seed.red.berry", "name": "Red Berry Seed", - "description": "These red berry seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more Corn and faster groth." + "description": "These red berry seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more berries and faster growth." }, "831955134": { "shortname": "skylantern.skylantern.purple", "name": "Sky Lantern - Purple", - "description": "" + "description": "#skylantern.skylantern.purple.desc" }, "832133926": { "shortname": "wood.armor.pants", "name": "Wood Armor Pants", - "description": "A shoddy piece of leg armor made from Wood and rope." + "description": "A shoddy piece of leg armor made from simple materials, provides some basic protection from melee and ranged attacks." }, "833533164": { "shortname": "box.wooden.large", @@ -787,7 +1007,7 @@ "838308300": { "shortname": "weapon.mod.burstmodule", "name": "Burst Module", - "description": "Forces the weapon to fire in 3 round bursts." + "description": "A weapon attachment that modifies recoil and rate of fire. Allows weapon to fire in 3 round bursts when turned on. Use [+firemode] to toggle on or off." }, "838831151": { "shortname": "clone.blue.berry", @@ -864,20 +1084,40 @@ "name": "Passenger Vehicle Module", "description": "Dual module seating." }, + "912235912": { + "shortname": "clone.sunflower", + "name": "Sunflower Clone", + "description": "A clipping of a sunflower plant." + }, "915408809": { "shortname": "ammo.grenadelauncher.smoke", "name": "40mm Smoke Grenade", "description": "Ammunition for a 40mm Grenade Launcher." }, + "920930831": { + "shortname": "industrial.wall.light.blue", + "name": "Blue Industrial Wall Light", + "description": "A small blue light source." + }, + "924598634": { + "shortname": "clone.wheat", + "name": "Wheat Clone", + "description": "A Clipping of a Wheat Plant." + }, "926800282": { "shortname": "valve2", "name": "Medium Quality Valves", "description": "Medium quality poppet valves for a combustion engine. Valves control the intake and exhaust flow." }, + "935606207": { + "shortname": "minigun", + "name": "Minigun", + "description": "A military issue belt-fed machine gun with that must be spun up to fire. Fires rapidly once spun up at the expense of movement speed." + }, "935692442": { "shortname": "tshirt.long", "name": "Longsleeve T-Shirt", - "description": "A t-shirt with long sleeves." + "description": "Long sleeve tshirt, versatile clothing for protection against damage and the elements." }, "936496778": { "shortname": "floor.grill", @@ -894,6 +1134,11 @@ "name": "Large Hunting Trophy", "description": "A large trophy stand to mount the head of killed animals or enemies." }, + "962186730": { + "shortname": "tincan.alarm", + "name": "Tin Can Alarm", + "description": "A primitive perimeter alarm made from hanging tin cans. Clatters loudly when disturbed, alerting you to any trespassers. Simple but effective." + }, "963906841": { "shortname": "rock", "name": "Rock", @@ -902,18 +1147,28 @@ "968019378": { "shortname": "clatter.helmet", "name": "Clatter Helmet", - "description": "A special item for those who own Clatter." + "description": "Special helmet for players who own Clatter and have played for at least 30 minutes, replaces the bucket helmet." }, "968421290": { "shortname": "connected.speaker", "name": "Connected Speaker", "description": "A small speaker that will play any audio from a connected Boom Box." }, + "969768382": { + "shortname": "reinforced.wooden.shield", + "name": "Reinforced Wooden Shield", + "description": "A basic wooden shield with added protection, keeps you safe but not for long. Usable with single handed weapons and tools." + }, "971362526": { "shortname": "skull.trophy.jar", "name": "Skull Trophy", "description": "A decorative mount that can hold the skull of a friend or foe." }, + "972302244": { + "shortname": "hazmatsuit.kick", + "name": "Kick Hazmat", + "description": "Hazmat obtained during Kick Drops 2025" + }, "975983052": { "shortname": "trophy", "name": "Twitch Rivals Trophy", @@ -922,7 +1177,7 @@ "980333378": { "shortname": "attire.hide.poncho", "name": "Hide Poncho", - "description": "A Poncho made from the hide of an animal." + "description": "Primitive armour for the chest made from animal skin. One size fits all. Offers some basic protection from damage and the elements." }, "988652725": { "shortname": "smart.switch", @@ -947,13 +1202,18 @@ "998894949": { "shortname": "seed.corn", "name": "Corn Seed", - "description": "Corn seeds can be found when picking wild Corn plants. These seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more Corn and faster groth." + "description": "Corn seeds can be found when picking wild Corn plants. These seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more corn and faster growth." }, "999690781": { "shortname": "geiger.counter", "name": "Geiger Counter", "description": "A geiger counter used by scientists" }, + "1004843240": { + "shortname": "seed.orchid", + "name": "Orchid Seed", + "description": "Orchid seeds can be found when picking wild Orchids." + }, "1015352446": { "shortname": "submarineduo", "name": "Duo Submarine", @@ -989,6 +1249,11 @@ "name": "Christmas Lights", "description": "A string of colored lights to decorate your home" }, + "1065594600": { + "shortname": "hazmatsuit.pilot", + "name": "Pilot Hazmat", + "description": "A hazmat suit made from a fighter pilot's flight suit." + }, "1072924620": { "shortname": "sparkplug3", "name": "High Quality Spark Plugs", @@ -1024,6 +1289,11 @@ "name": "Barbeque", "description": "A makeshift Barbeque. You can cook significant amounts of food with this." }, + "1099611828": { + "shortname": "clothing.mod.armorinsert_metal", + "name": "Metal Armor Insert", + "description": "Metal insert for crafted clothing and armor, provides extra protection from projectiles." + }, "1103488722": { "shortname": "snowballgun", "name": "Snowball Gun", @@ -1054,11 +1324,26 @@ "name": "Attack Helicopter", "description": "A fairly solid helicopter with weapons capability." }, + "1115193056": { + "shortname": "wall.frame.lunar2025_a", + "name": "Wall Divider Pack", + "description": "A Lunar New Year themed decorative wall divider with geometric inlay" + }, + "1121416193": { + "shortname": "purecoolingtea", + "name": "Pure Cooling Tea", + "description": "A pure cooling tea that temporarily decreases your max and core temperature." + }, "1121925526": { "shortname": "candycane", "name": "Candy Cane", "description": "A very old candy cane from 2014" }, + "1130729138": { + "shortname": "fish.spoiled", + "name": "Spoiled Fish Meat", + "description": "Spoiled Fish Meat. Consuming will damage your health." + }, "1132603396": { "shortname": "gunrack_stand", "name": "Weapon Rack Stand", @@ -1069,6 +1354,11 @@ "name": "Ceiling Light", "description": "A small ceiling mounted light source." }, + "1145722690": { + "shortname": "catapult", + "name": "Catapult", + "description": "An improvised catapult siege weapon. Built for flinging destructive projectiles with questionable accuracy. Can be towed by horses." + }, "1149964039": { "shortname": "storage.monitor", "name": "Storage Monitor", @@ -1109,11 +1399,26 @@ "name": "Metal Detector", "description": "Detects metal objects which may otherwise be hidden. When the light flashes, or you hear a beep, aim to search for items. Increase the bar until a flag appears. Dig at the flag with a melee item to reveal what it is. Different areas yield different rewards" }, + "1168916338": { + "shortname": "grenade.bee", + "name": "Bee Grenade", + "description": "A fragile glass jar full of bees. Breaking upon impact, the bees will find the nearest player to attack. Careful where you throw it!" + }, "1171735914": { "shortname": "electric.andswitch", "name": "AND Switch", "description": "A logic gate that allows electrical passthrough if BOTH inputs receives power, passthrough amount is the greater of either power source" }, + "1174484438": { + "shortname": "mini fridge", + "name": "Mini Fridge", + "description": "Ideal for preserving food and keeping items cool." + }, + "1174957864": { + "shortname": "cupboard.tool.shockbyte", + "name": "Shockbyte Tool Cupboard", + "description": "Ensure 100% Tool Cupboard uptime with this Tool Cupboard skin." + }, "1176355476": { "shortname": "concretehatchet", "name": "Concrete Hatchet", @@ -1124,11 +1429,21 @@ "name": "Elevator", "description": "A powered elevator. Place another elevator above or below this to connect it. Requires power." }, + "1178325727": { + "shortname": "wheat", + "name": "Wheat", + "description": "A bundle of wheat. Edible, but better off in a cooking recipe." + }, "1181207482": { "shortname": "heavy.plate.helmet", "name": "Heavy Plate Helmet", "description": "Offers superior protection at the cost of reduced vision and movement speed." }, + "1184215560": { + "shortname": "spoiled.produce", + "name": "Spoiled Produce", + "description": "A spoiled fruit or vegetable. It's so far gone it's hard to tell what it originally was." + }, "1186655046": { "shortname": "vehicle.2mod.fuel.tank", "name": "Fuel Tank Vehicle Module", @@ -1252,7 +1567,7 @@ "1293102274": { "shortname": "electric.xorswitch", "name": "XOR Switch", - "description": "An exclusive-or logic gate that allows electrical passthrough if ONLY ONE input receives power, passthrough amount is whichever single input is active. if BOTH inputs recieve power, passthrough will be zero." + "description": "An exclusive-or logic gate that allows electrical passthrough if ONLY ONE input receives power, passthrough amount is whichever single input is active. If BOTH inputs recieve power, passthrough will be zero." }, "1296788329": { "shortname": "ammo.rocket.seeker", @@ -1264,6 +1579,11 @@ "name": "Small Neon Sign", "description": "A small neon sign!" }, + "1305765685": { + "shortname": "krieg.storage.vertical", + "name": "Krieg Storage Barrel", + "description": "Industrial barrels repurposed for the front lines. Sturdy, disciplined, and unmistakably Krieg." + }, "1307626005": { "shortname": "storage_barrel_b", "name": "Storage Barrel Vertical", @@ -1316,9 +1636,19 @@ }, "1346158228": { "shortname": "pumpkinbasket", - "name": "Pumpkin Bucket", + "name": "Pumpkin Basket", "description": "A pumpkin basket to help you collect candy much faster during Trick or Treat events with left click. Use right click to throw candy" }, + "1348294923": { + "shortname": "bearmeat.spoiled", + "name": "Spoiled Bear Meat", + "description": "Spoiled Bear Meat. Consuming will damage your health." + }, + "1350707894": { + "shortname": "jungle.rock", + "name": "Jungle Rock", + "description": "A Jungle Rock. The most basic melee weapon and gathering tool." + }, "1353298668": { "shortname": "door.hinged.toptier", "name": "Armored Door", @@ -1397,7 +1727,7 @@ "1394042569": { "shortname": "rhib", "name": "RHIB", - "description": "" + "description": null }, "1397052267": { "shortname": "supply.signal", @@ -1417,7 +1747,12 @@ "1409529282": { "shortname": "door.closer", "name": "Door Closer", - "description": "Auotmatically closes your doors when left open." + "description": "Automatically closes your doors when left open." + }, + "1412103380": { + "shortname": "seed.sunflower", + "name": "Sunflower Seed", + "description": "Sunflower seeds can be found when picking wild Sunflowers." }, "1413014235": { "shortname": "fridge", @@ -1429,11 +1764,21 @@ "name": "Note", "description": "A scrap of paper for leaving notes." }, + "1414245519": { + "shortname": "rose", + "name": "Rose", + "description": "Romantic AF." + }, "1414245522": { "shortname": "rope", "name": "Rope", "description": "A Length of Rope." }, + "1420547167": { + "shortname": "horse.costume", + "name": "Horse Costume", + "description": "An inflatable horse costume. Acting as a replacement for wooden pants, you can equip this item to look as silly as possible." + }, "1422530437": { "shortname": "deermeat.raw", "name": "Raw Deer Meat", @@ -1444,10 +1789,20 @@ "name": "Water Bucket", "description": "A bucket for transporting water or other liquids." }, + "1426097945": { + "shortname": "cocoknight.armor.torso", + "name": "Coconut Armor Chestplate", + "description": "A shoddy piece of body armor made from coconut and plants, provides some basic protection from melee and ranged attacks." + }, "1426574435": { "shortname": "minihelicopter.repair", - "name": "MC repair", - "description": "MC repair dummy" + "name": "Minicopter", + "description": null + }, + "1428574144": { + "shortname": "hopper", + "name": "Hopper", + "description": "Will suck up any dropped items in it's radius while powered" }, "1430085198": { "shortname": "industrial.crafter", @@ -1464,11 +1819,21 @@ "name": "Chainlink Fence Gate", "description": "A Chainlink Fence Gate." }, + "1456143403": { + "shortname": "cookingworkbench", + "name": "Cooking Workbench", + "description": "Used to cook advanced recipes for food, fuel, ammunition and explosives." + }, "1463862472": { "shortname": "wantedposter.wantedposter4", "name": "Wanted Poster 4", "description": "A poster that can display a given player's face as wanted." }, + "1467878256": { + "shortname": "pie.pork", + "name": "Pork Pie", + "description": "Tempting pork pie, provides a boost to hunger, health and hydration. Improves healing rate from other sources for a short time." + }, "1478091698": { "shortname": "weapon.mod.muzzlebrake", "name": "Muzzle Brake", @@ -1477,7 +1842,17 @@ "1480022580": { "shortname": "oretea", "name": "Basic Ore Tea", - "description": "A tea that increases the amount of ore you receive." + "description": "A basic ore tea, provides hydration and temporarily increases your yield from harvesting ores a small amount." + }, + "1482871705": { + "shortname": "3module car chassis", + "name": "3 Module Car Chassis", + "description": "3 Module Car Chassis" + }, + "1488606552": { + "shortname": "cupboard.tool.retro", + "name": "Retro Tool Cupboard", + "description": "Transform your tool cupboard experience with this modified Hi-Fi cabinet. Complete with retro displays indicating vital base data as well as frosted glass doors allowing you to view its contents of tools and resources!" }, "1488979457": { "shortname": "jackhammer", @@ -1494,11 +1869,21 @@ "name": "Medium Frankenstein Torso", "description": "A balanced torso.\n\nCombined at a Frankenstein Table to create your very own monster." }, + "1494014226": { + "shortname": "discord.trophy", + "name": "Discord Trophy", + "description": "A companion that reminds you of your youth." + }, "1512054436": { "shortname": "clone.potato", "name": "Potato Clone", "description": "A Clipping of a Potato Plant." }, + "1516531815": { + "shortname": "harvestingtea", + "name": "Basic Harvesting Tea", + "description": "A basic harvesting tea, provides hydration and temporarily increases the amount of resources you receive from harvesting corpses a small amount." + }, "1516985844": { "shortname": "wall.frame.netting", "name": "Netting", @@ -1527,7 +1912,7 @@ "1524980732": { "shortname": "carvable.pumpkin", "name": "Carvable Pumpkin", - "description": "A pumpkin that you can carve. \n\nRequires wood as a fuel source." + "description": "A pumpkin you can carve any design you'd like into and light up at night. Requires wood as a fuel source." }, "1525520776": { "shortname": "building.planner", @@ -1582,7 +1967,7 @@ "1556365900": { "shortname": "grenade.molotov", "name": "Molotov Cocktail", - "description": "An incendiary device" + "description": "A glass bottle filled with low grade fuel. Smashes and spreads fire when it lands, incredibly high damage to wood and players but innefective against stronger materials." }, "1557173737": { "shortname": "sunglasses02red", @@ -1607,7 +1992,7 @@ "1568388703": { "shortname": "diesel_barrel", "name": "Diesel Fuel", - "description": "Appropriate fuel for the excavator" + "description": "Suitable fuel to power quarries and the giant excavator." }, "1569882109": { "shortname": "fishingrod.handmade", @@ -1624,11 +2009,21 @@ "name": "Frankenstein Table", "description": "Place a monsters head, torso and legs into the table to summon Frankensteins monster." }, + "1578317134": { + "shortname": "hazmat.plushy", + "name": "Hazmat Plushy", + "description": "A plushy of your favourite outfit made by the fabulous people at YouTooz.com" + }, "1581210395": { "shortname": "planter.large", "name": "Large Planter Box", "description": "A large planter with enough room to plant 9 seeds." }, + "1586884551": { + "shortname": "lock.code.a.pilot", + "name": "Flight Control Codelock", + "description": "An electronic lock made of airplane parts. Locked and unlocked with four-digit code." + }, "1588298435": { "shortname": "rifle.bolt", "name": "Bolt Action Rifle", @@ -1644,6 +2039,11 @@ "name": "Blue Jumpsuit", "description": "A Blue Jumpsuit" }, + "1601800933": { + "shortname": "honey", + "name": "Jar of Honey", + "description": "A jar of honey. Good for reducing hunger and radiation, or could be saved for recipes. The source of the glass jar is a mystery." + }, "1602646136": { "shortname": "spear.stone", "name": "Stone Spear", @@ -1654,16 +2054,31 @@ "name": "Confetti Cannon", "description": "Blast a cloud of birthday themed confetti cheer." }, + "1604837581": { + "shortname": "wooden.shield", + "name": "Wooden Shield", + "description": "A basic wooden shield, won't last very long. Usable with single handed weapons and tools." + }, "1608640313": { "shortname": "shirt.tanktop", "name": "Tank Top", - "description": "A tshirt without sleeves" + "description": "A tank top, comes with free stains. Basic protection, but better than nothing." }, "1614528785": { "shortname": "frankensteins.monster.03.torso", "name": "Heavy Frankenstein Torso", "description": "Slightly slower, slightly stronger.\n\nCombined at a Frankenstein Table to create your very own monster." }, + "1619039771": { + "shortname": "electric.digitalclock", + "name": "Digital Clock", + "description": "A digital clock that displays the server time and lets you set alarms to pass power through when ringing. Ideal for synchronizing traps or timed events." + }, + "1621942085": { + "shortname": "outbreak.sprayer", + "name": "Outbreak Sprayer", + "description": "An outbreak sprayer used by scientists" + }, "1623701499": { "shortname": "industrial.wall.light", "name": "Industrial Wall Light", @@ -1674,6 +2089,11 @@ "name": "Snowman", "description": "Get into the holiday spirit with this decorative snowman" }, + "1629564540": { + "shortname": "wallpaper.tool", + "name": "Wallpaper Tool", + "description": "Transform your base from a rusty shack to a cozy hideout! This tool lets you apply wallpaper on walls, floors and ceilings. A nice touch of style - until the next raid, at least.\n\nPress [+attack2] to select your skin." + }, "1638322904": { "shortname": "ammo.rocket.fire", "name": "Incendiary Rocket", @@ -1707,7 +2127,7 @@ "1659447559": { "shortname": "horse.armor.wood", "name": "Wooden Horse Armor", - "description": "A set of wooden horse armor" + "description": "A full body armor for a horse made of wood. Provides moderate protection for you and your steed, but with a reduction in movement speed." }, "1660145984": { "shortname": "yellow.berry", @@ -1724,10 +2144,20 @@ "name": "Small Stocking", "description": "A small stocking. Hang it by a fire and you might just get a gift! Collect 6 to upgrade to a SUPER Stocking." }, + "1673224590": { + "shortname": "pistol.semiauto.a.m15", + "name": "M15 Semi-Automatic Pistol", + "description": "A special issue Air Force semi-automatic pistol, fires rapidly and with good accuracy." + }, "1675639563": { "shortname": "hat.beenie", "name": "Beenie Hat", - "description": "A wooly hat." + "description": "A wooly hat, offering some basic protection from damage and cold for your head." + }, + "1680793490": { + "shortname": "boomerang", + "name": "Boomerang", + "description": "Can be used a melee weapon or as a throwable. Once thrown (with right click) it travels in an arc before coming back to you." }, "1686524871": { "shortname": "xmas.decoration.gingerbreadmen", @@ -1762,13 +2192,28 @@ "1712261904": { "shortname": "maxhealthtea.pure", "name": "Pure Max Health Tea", - "description": "A tea that increases your maximum health." + "description": "A pure health tea, provides hydration and temporarily boosts maximum health a large amount." }, "1714496074": { "shortname": "hat.candle", "name": "Candle Hat", "description": "A hat with a candle on top. You can turn the candle on in your inventory." }, + "1714509152": { + "shortname": "ballista.static", + "name": "Ballista", + "description": "A stationary ballista, perfect for defence. Can fire deadly bolts at distant targets." + }, + "1717250161": { + "shortname": "electric.tablelight", + "name": "Electric Table Lamp", + "description": "A small light source made out of an old oil can." + }, + "1719587208": { + "shortname": "weapon.mod.targetingattachment", + "name": "Targeting Attachment", + "description": "An internal weapon mod that allows the user to send pings to their team while the weapon is equipped." + }, "1719978075": { "shortname": "bone.fragments", "name": "Bone Fragments", @@ -1777,7 +2222,7 @@ "1722154847": { "shortname": "attire.hide.pants", "name": "Hide Pants", - "description": "Trousers made from the hide of an animal." + "description": "Trousers made from the hide of an animal. Moderate protection against animal attacks." }, "1723747470": { "shortname": "xmas.decoration.lights", @@ -1792,13 +2237,23 @@ "1729374708": { "shortname": "oretea.pure", "name": "Pure Ore Tea", - "description": "A tea that increases the amount of ore you receive." + "description": "A pure ore tea, provides hydration and temporarily increases your yield when harvesting ores a large amount." }, "1729712564": { "shortname": "photoframe.portrait", "name": "Portrait Photo Frame", "description": "A portrait oriented canvas for artists paintings." }, + "1730664641": { + "shortname": "wallpaper.ceiling", + "name": "Wallpaper Ceiling", + "description": null + }, + "1732236518": { + "shortname": "caboose", + "name": "Caboose", + "description": "Caboose" + }, "1735402444": { "shortname": "discofloor.largetiles", "name": "Disco Floor", @@ -1812,7 +2267,7 @@ "1746956556": { "shortname": "bone.armor.suit", "name": "Bone Armor", - "description": "A suit of armor made of bones." + "description": "A primitive suit of armor made of bones, weak protection from damage and the elements but better than nothing." }, "1751045826": { "shortname": "hoodie", @@ -1827,7 +2282,7 @@ "1758333838": { "shortname": "rockingchair.rockingchair2", "name": "Teal", - "description": "" + "description": "A rocking chair that responds to your input. Don't fire whilst seated." }, "1762167092": { "shortname": "greenidtag", @@ -1899,6 +2354,11 @@ "name": "Garry's Mod Tool Gun", "description": "Celebrating 15 Years of Garry's Mod! Use this tool gun to upgrade building parts. Right-click for the options. You can also pick up deployed objects while the hammer is equipped." }, + "1811780502": { + "shortname": "water.radioactive", + "name": "Radioactive Water", + "description": "Glowing water. Consuming will damage your health and irradiate you." + }, "1814288539": { "shortname": "knife.bone", "name": "Bone Knife", @@ -1907,13 +2367,18 @@ "1819863051": { "shortname": "skylantern", "name": "Sky Lantern", - "description": "A beautiful sky lantern. Can be launched in any direction. Has one inventory slot. Can be Ignited with a lit torch." + "description": "A set of beautiful sky lanterns. Comes in 5 colors. Can be launched in any direction. Has one inventory slot. Can be Ignited with a lit torch." }, "1827479659": { "shortname": "wolfmeat.burned", "name": "Burnt Wolf Meat", "description": "Spoiled Wolf Meat. Consuming will damage your health." }, + "1831249347": { + "shortname": "catapult.ammo.boulder", + "name": "Scattershot", + "description": "A cluster of heavy rock projectiles for a catapult. Wide spread, pure kinetic damage on impact." + }, "1835946060": { "shortname": "electric.cabletunnel", "name": "Cable Tunnel", @@ -1927,7 +2392,7 @@ "1840822026": { "shortname": "grenade.beancan", "name": "Beancan Grenade", - "description": "Unreliable explosive device." + "description": "An unreliable explosive grenade. Each one has a different length fuse, so you might lose some fingers. Can be used to make satchel charges." }, "1846605708": { "shortname": "divertorch", @@ -1942,18 +2407,33 @@ "1850456855": { "shortname": "roadsign.kilt", "name": "Road Sign Kilt", - "description": "A shoddy piece of leg armor made from roadsigns." + "description": "A shoddy piece of leg armor made from roadsigns. Moderate protection from melee and projectiles." }, "1856217390": { "shortname": "easterbasket", "name": "Egg Basket", "description": "An easter egg basket. Equip to pick up eggs during an easter egg hunt with left click. Use right click to throw" }, + "1858828593": { + "shortname": "egg", + "name": "Egg", + "description": "An egg laid by a chicken, will hatch in a coop. Can be eaten raw but best saved for a recipe." + }, "1865253052": { "shortname": "draculamask", "name": "Dracula Mask", "description": "A classic halloween costume mask which provides decent protection." }, + "1869224826": { + "shortname": "motorbike_sidecar", + "name": "Motorbike With Sidecar", + "description": "A motorbike with sidecar." + }, + "1873004466": { + "shortname": "cocoknight.armor.gloves", + "name": "Coconut Armor Gloves", + "description": "Hand protection made of bark and plants, offers some protection to the upper body." + }, "1873897110": { "shortname": "bearmeat.cooked", "name": "Cooked Bear Meat", @@ -1972,7 +2452,7 @@ "1878053256": { "shortname": "rowboat", "name": "Rowboat", - "description": "" + "description": null }, "1882709339": { "shortname": "metalblade", @@ -1999,6 +2479,11 @@ "name": "Spooky Speaker", "description": "Frighten your guests with creepy and spooky halloween sounds!" }, + "1892536031": { + "shortname": "electric.fluorescentlight", + "name": "Fluorescent Light", + "description": "Bright enough to see what you’re doing." + }, "1895235349": { "shortname": "discoball", "name": "Disco Ball", @@ -2027,12 +2512,12 @@ "1911552868": { "shortname": "seed.black.berry", "name": "Black Berry Seed", - "description": "These black berry seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more Corn and faster groth." + "description": "These black berry seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more berries and faster growth." }, "1914691295": { "shortname": "pistol.prototype17", "name": "Prototype 17", - "description": "A burst fire prototype pistol" + "description": "A protype pistol with a built-in 3 round burst fire mode. Strong in close quarters. Swap between single shot and burst with [+firemode]" }, "1916016738": { "shortname": "lightupmirror.standing", @@ -2044,11 +2529,21 @@ "name": "Burnt Horse Meat", "description": "Burned horse meat. Eating it will damage your health." }, + "1925646349": { + "shortname": "porkmeat.spoiled", + "name": "Spoiled Pork Meat", + "description": "Spoiled Pork Meat. Consuming will damage your health." + }, "1931713481": { "shortname": "black.raspberries", "name": "Black Raspberries", "description": "Black Raspberries picked from berry bushes. Eating it provides a small boost to health, hunger, and thirst." }, + "1937380239": { + "shortname": "frontier_hatchet", + "name": "Frontier Hatchet", + "description": "A Frontier Hatchet, useful for chopping trees and dismembering corpses." + }, "1946219319": { "shortname": "campfire", "name": "Camp Fire", @@ -2077,7 +2572,12 @@ "1953903201": { "shortname": "pistol.nailgun", "name": "Nailgun", - "description": "A construction tool turned deadly" + "description": "A construction tool turned deadly." + }, + "1954597876": { + "shortname": "catapult.ammo.bee", + "name": "Bee Catapult Bomb", + "description": "A bunch of Bee Grenades in a single catapult projectile. Creates swarms of Bees on impact." }, "1965232394": { "shortname": "crossbow", @@ -2114,6 +2614,11 @@ "name": "High Quality Horse Shoes", "description": "Equipping these horse shoes will grant your horse additional movement speed" }, + "1991794121": { + "shortname": "trike", + "name": "Trike", + "description": "A three-wheeled bicycle." + }, "1992974553": { "shortname": "burlap.trousers", "name": "Burlap Trousers", @@ -2147,7 +2652,17 @@ "2024467711": { "shortname": "scraptea.pure", "name": "Pure Scrap Tea", - "description": "A tea that increases the amount of scrap you receive from barrels." + "description": "A pure scrap tea, temporarily increases the amount of scrap you receive from barrels a large amount." + }, + "2036395619": { + "shortname": "dart.scatter", + "name": "Scatter Dart", + "description": "A spread shot dart that fires multiple smaller darts." + }, + "2039177180": { + "shortname": "pie.bear", + "name": "Bear Pie", + "description": "A pie made of bear meat, provides a boost to hunger, health and hydration. Increases effect of harvesting teas but reduces their duration." }, "2040726127": { "shortname": "knife.combat", @@ -2159,6 +2674,11 @@ "name": "Triangle Ladder Hatch", "description": "A hatch that opens and changes into a ladder." }, + "2047789913": { + "shortname": "clothing.mod.armorinsert_lead", + "name": "Lead Armor Insert", + "description": "Lead insert that adds radiation protection for crafted clothes and armor." + }, "2048317869": { "shortname": "skull.wolf", "name": "Wolf Skull", @@ -2174,6 +2694,11 @@ "name": "Factory Door", "description": "Medium strength door, vulnerable to explosives. Contains a bulletproof viewing portal" }, + "2054929933": { + "shortname": "rifle.ak.jungle", + "name": "Jungle Relic Assault Rifle", + "description": "Jungle Relic themed high damage machine rifle." + }, "2055695285": { "shortname": "frontiermirror.medium", "name": "Frontier Mirror Medium", @@ -2182,7 +2707,7 @@ "2063916636": { "shortname": "oretea.advanced", "name": "Advanced Ore Tea", - "description": "A tea that increases the amount of ore you receive." + "description": "An advanced ore tea, provides hydration and temporarily increases your yield from ores a moderate amount." }, "2068884361": { "shortname": "smallbackpack", @@ -2194,6 +2719,11 @@ "name": "Large Banner on pole", "description": "A large banner hanging on a pole." }, + "2083256995": { + "shortname": "t1_smg", + "name": "Handmade SMG", + "description": "An extremely basic automatic firearm. Low damage and accuracy." + }, "2087678962": { "shortname": "searchlight", "name": "Search Light", @@ -2232,13 +2762,78 @@ "2126889441": { "shortname": "santabeard", "name": "Santa Beard", - "description": "A santa beard. Ho Ho ho." + "description": "A santa beard. Ho Ho ho. This item acts as a hairy bandana." + }, + "2130820932": { + "shortname": "charity.plushy.01", + "name": "Cancer Research UK Plushie", + "description": "A soft and squishy plush that provides comfort in your base. First sold on the Rust store in October 2025 to support Cancer Research UK, each purchase helped fund real-world cancer research.\n\nwww.cancerresearchuk.org" + }, + "2130820933": { + "shortname": "charity.plushy.02", + "name": "Ronald McDonald House UK Plushie", + "description": "A soft and squishy plush that provides comfort in your base. First sold on the Rust store in October 2025 to support Ronald McDonald House Charities UK, helping ease the burden on families by providing free ‘home away from home’ accommodation near hospitals.\n\nwww.rmhc.org.uk" }, "2133269020": { "shortname": "clone.red.berry", "name": "Red Berry Clone", "description": "A clipping of a Red Berry Plant." }, + "-226151558": { + "shortname": "2module car chassis", + "name": "2 Module Car Chassis", + "description": "2 Module Car Chassis" + }, + "-866121090": { + "shortname": "2module car", + "name": "2 Module Car", + "description": "A motorbike." + }, + "-831725027": { + "shortname": "3module car", + "name": "3 Module Car", + "description": "3 Module Car" + }, + "-935322684": { + "shortname": "4module car", + "name": "4 Module Car", + "description": "4 Module Car" + }, + "-880494890": { + "shortname": "abyss.barrel.horizontal", + "name": "Abyss Horizontal Storage Tank", + "description": "Horizontal Abyss container taken from the depths of the ocean" + }, + "-919882824": { + "shortname": "abyss.barrel.vertical", + "name": "Abyss Vertical Storage Tank", + "description": "Vertical Abyss container taken from the depths of the ocean" + }, + "-1896395719": { + "shortname": "advancedblueprintfragment", + "name": "Advanced Blueprint Fragment", + "description": "Precision schematics with complex information, multiple fragments are necessary for crafting a Tier 3 Workbench." + }, + "-1498613415": { + "shortname": "advancedcoolingtea", + "name": "Advanced Cooling Tea", + "description": "An advanced cooling tea, provides hydration and temporarily decreases your max and core temperature." + }, + "-652889722": { + "shortname": "advancedcraftingtea_quality", + "name": "Advanced Crafting Quality Tea", + "description": "An advanced crafting tea, provides hydration and temporarily increases the chances of a higher quality crafting outcome." + }, + "-334418777": { + "shortname": "advancedwarmingtea", + "name": "Advanced Warming Tea", + "description": "An advanced warming tea that temporarily increases both your core and minimum temperature." + }, + "-1385721419": { + "shortname": "advanceharvestingtea", + "name": "Advanced Harvesting Tea", + "description": "An advanced harvesting tea, provides hydration and temporarily boosts the amount of resources you receive from harvesting corpses a moderate amount." + }, "-2097376851": { "shortname": "ammo.nailgun.nails", "name": "Nailgun Nails", @@ -2277,7 +2872,7 @@ "-384243979": { "shortname": "ammo.rocket.sam", "name": "SAM Ammo", - "description": "Ammunition for a Sam Site, This missile contains a rudimentary guidance system to help it navigate through strong winds." + "description": "Ammunition for a SAM Site. This missile contains a rudimentary guidance system to help it navigate through strong winds." }, "-17123659": { "shortname": "ammo.rocket.smoke", @@ -2337,7 +2932,7 @@ "-1773144852": { "shortname": "attire.hide.skirt", "name": "Hide Skirt", - "description": "A Skirt made from the hide of an animal." + "description": "Simple hide skirt, made with common materials. Basic all-round protection." }, "-1506417026": { "shortname": "attire.ninja.suit", @@ -2364,6 +2959,36 @@ "name": "Salvaged Axe", "description": "A high-yield resource gathering axe. Slower than the Hatchet." }, + "-19318653": { + "shortname": "ballista.bolt.hammerhead", + "name": "Hammerhead Bolt", + "description": "Heavy and solid bolt for a ballista, designed to hammer through doors." + }, + "-1987565603": { + "shortname": "ballista.bolt.incendiary", + "name": "Incendiary Bolt", + "description": "A fire-tipped bolt for a ballista, wrapped in burning cloth, ignites upon impact." + }, + "-1127003365": { + "shortname": "ballista.bolt.piercer", + "name": "Piercer Bolt", + "description": "A piercing bolt for a ballista, capable of penetrating armored vehicles." + }, + "-357442017": { + "shortname": "ballista.bolt.pitchfork", + "name": "Pitchfork Bolt", + "description": "A wide-impact bolt for a ballista, covering a large area while dealing moderate damage." + }, + "-759279626": { + "shortname": "ballista.mounted", + "name": "Mounted Ballista", + "description": "A ballista mounted on wheels, designed for mobility and capable of firing bolts at distant targets. Can be towed by horses." + }, + "-1652561344": { + "shortname": "bamboo.barrel", + "name": "Bamboo Barrel", + "description": "Keep your things in this bamboo barrel. Stores up to 48 items. Cannot be locked." + }, "-2072273936": { "shortname": "bandage", "name": "Bandage", @@ -2379,16 +3004,36 @@ "name": "Concrete Barricade", "description": "A barricade made out of Stones." }, + "-424687710": { + "shortname": "barricade.medieval", + "name": "Medieval Barricade", + "description": "A medieval barricade. Designed to block paths and provide defensive cover as well as being an effective tool to fortify your base." + }, "-559599960": { "shortname": "barricade.sandbags", "name": "Sandbag Barricade", "description": "A protective barricade made out of Sand Bags." }, + "-143481979": { + "shortname": "basicblueprintfragment", + "name": "Basic Blueprint Fragment", + "description": "Damaged diagrams containing partial information to constuct a Tier 2 Workbench for advanced crafting. Several fragments are needed.\n\n20 Basic Fragments can be pieced together to make an Advanced Fragment." + }, "-1274093662": { "shortname": "bathtub.planter", "name": "Bath Tub Planter", "description": "A small planter with enough room to plant 3 seeds." }, + "-479314201": { + "shortname": "batteringram.head.repair", + "name": "Battering Ram Head", + "description": null + }, + "-187304968": { + "shortname": "batteringram", + "name": "Battering Ram", + "description": "A reinforced siege weapon built for smashing through wooden and stone constructions with brute force. Must be repaired with high quality metal to keep functioning." + }, "-321431890": { "shortname": "beachchair", "name": "Beach Chair", @@ -2404,6 +3049,16 @@ "name": "Beach Towel", "description": "A colourful beach towel. Placing this will give you a location to respawn." }, + "-576866254": { + "shortname": "beanbagseatfabric", + "name": "Fabric Beanbag Seat", + "description": "A cozy fabric beanbag seat to sink in to." + }, + "-1220928936": { + "shortname": "beanbagseatleather", + "name": "Leather Beanbag Seat", + "description": "A cozy leather beanbag seat to sink in to." + }, "-989755543": { "shortname": "bearmeat.burned", "name": "Burnt Bear Meat", @@ -2419,6 +3074,21 @@ "name": "Bed", "description": "A Bed. Placing this will give you a place to respawn and can be used much more frequently than a sleeping bag. Note: Must be placed inside a building." }, + "-1318837358": { + "shortname": "bigcatmeat.cooked", + "name": "Cooked Big Cat Meat", + "description": "Delicious Big Cat Meat, Eating it will restore some health, hunger, and thirst." + }, + "-2095813057": { + "shortname": "bigcatmeat", + "name": "Raw Big Cat Meat", + "description": "Raw Big Cat Meat. Eating it will damage your health, try cooking it first." + }, + "-851288382": { + "shortname": "blowpipe", + "name": "Blow Pipe", + "description": "A blown weapon that fires darts with different effects." + }, "-586342290": { "shortname": "blueberries", "name": "Blueberries", @@ -2429,6 +3099,11 @@ "name": "Blueprint", "description": "Blueprint" }, + "-880412831": { + "shortname": "blunderbuss", + "name": "Blunderbuss", + "description": "A Shotgun with two barrels allowing two shots to be fired in quick succession before needing to reload." + }, "-1478094705": { "shortname": "boogieboard", "name": "Boogie Board", @@ -2474,10 +3149,25 @@ "name": "Cassette - Medium", "description": "A tape that you can record audio on to using a Cassette Recorder. Stores up to 20s of audio." }, + "-1827561369": { + "shortname": "catapult.ammo.explosive", + "name": "Propane Explosive Bomb", + "description": "An explosive propane-filled keg, devastating to structures. Can be placed or used as a projectile in a catapult." + }, + "-484006286": { + "shortname": "catapult.ammo.incendiary", + "name": "Firebomb", + "description": "A crude firebomb made of fuel-filled jugs wrapped in a net. Can be placed or used as a projectile in a catapult." + }, + "-463012608": { + "shortname": "chair.ejector.seat", + "name": "Salvaged Ejector Seat", + "description": "A chair made from an ejector seat. A decorative item which provides comfort while seated. Stays put." + }, "-1944704288": { "shortname": "chair.icethrone", "name": "Ice Throne", - "description": "Every home needs a chair. A decorative item which provides comfort while seated." + "description": "An Ice Throne. Fit for the one true arctic warlord." }, "-1938052175": { "shortname": "charcoal", @@ -2504,6 +3194,11 @@ "name": "Spoiled Chicken", "description": "Spoiled Chicken. Eating it will damage your health." }, + "-2018158920": { + "shortname": "chickencoop", + "name": "Chicken Coop", + "description": "An enclosure to keep some chickens around. Chickens with plenty of food, water and sunlight produce more eggs." + }, "-1916473915": { "shortname": "chineselantern", "name": "Chinese Lantern", @@ -2534,16 +3229,51 @@ "name": "Hemp Clone", "description": "A clipping of a hemp plant." }, + "-798662404": { + "shortname": "clone.orchid", + "name": "Orchid Clone", + "description": "A clipping of an orchid plant." + }, + "-19360132": { + "shortname": "clone.rose", + "name": "Rose Clone", + "description": "A clipping of a rose plant." + }, "-858312878": { "shortname": "cloth", "name": "Cloth", "description": "Cloth from an animal or a Hemp Bush. Used in many clothing items, weapons, and more." }, + "-606898372": { + "shortname": "clothing.mannequin", + "name": "#clothingmannequin", + "description": "#clothing.mannequin.desc" + }, + "-903796529": { + "shortname": "clothing.mod.armorinsert_asbestos", + "name": "Asbestos Armor Insert", + "description": "Asbestos insert providing extra protection from heat for crafted clothes and armor." + }, + "-593892112": { + "shortname": "clothing.mod.armorinsert_wood", + "name": "Wooden Armor Insert", + "description": "Wood insert for crafted clothes and armor, provides some extra protection from bullets and melee." + }, + "-582467439": { + "shortname": "cocoknight.armor.helmet", + "name": "Coconut Armor Helmet", + "description": "A shoddy helmet made from coconut, provides some basic protection from melee and ranged attacks." + }, "-803263829": { "shortname": "coffeecan.helmet", "name": "Coffee Can Helmet", "description": "A Coffee Can Helmet. It provides a level of regional protection from inflicted damage." }, + "-1247485104": { + "shortname": "command.block", + "name": "Command Block", + "description": "A block that runs commands" + }, "-1488398114": { "shortname": "composter", "name": "Composter", @@ -2559,6 +3289,21 @@ "name": "Concrete Pickaxe", "description": "A salvaged piece of concrete and rebar with a sharp edge. Can be used to harvest Stone, Metal ore and Sulfur ore." }, + "-1260229965": { + "shortname": "coolingtea", + "name": "Basic Cooling Tea", + "description": "A basic cooling tea that temporarily decreases your max and core temperature." + }, + "-1081599445": { + "shortname": "crocodilemeat", + "name": "Raw Crocodile Meat", + "description": "Raw Crocodile Meat. Eating it will damage your health, try cooking it first." + }, + "-1796837031": { + "shortname": "crocodilemeat.spoiled", + "name": "Spoiled Crocodile Meat", + "description": "Spoiled Crocodile Meat. Consuming will damage your health." + }, "-321733511": { "shortname": "crude.oil", "name": "Crude Oil", @@ -2569,10 +3314,25 @@ "name": "Tool Cupboard", "description": "Placing and authorising with the cupboard will make it so only you can build in a 50 meter radius of it. If you want your friends to build, they'll need to auth too. You should protect this." }, + "-963819285": { + "shortname": "dart.incapacitate", + "name": "Incapacitate Dart", + "description": "A dart that slows your target and blocks their vision briefly." + }, + "-594596146": { + "shortname": "dart.radiation", + "name": "Radiation Dart", + "description": "A dart that applies stackable radiation." + }, + "-274709858": { + "shortname": "dart.wood", + "name": "Wood Dart", + "description": "A basic damage dart." + }, "-1903165497": { "shortname": "deer.skull.mask", "name": "Bone Helmet", - "description": "A helmet made of bone." + "description": "A primitive helmet made from bone. Moderate protection from projectiles and melee damage." }, "-78533081": { "shortname": "deermeat.burned", @@ -2584,25 +3344,35 @@ "name": "Cooked Deer Meat", "description": "Cooked Deer Meat. Eating it will restore some health, hunger, and thirst." }, + "-2035449523": { + "shortname": "deermeat.spoiled", + "name": "Spoiled Deer Meat", + "description": "Spoiled Deer Meat. Consuming will damage your health." + }, "-113413047": { "shortname": "diving.mask", "name": "Diving Mask", - "description": "A Diving Mask. Provides clear vision under water." + "description": "A diving mask that provides clear vision under water at the cost of reduced peripheral vision." }, "-2022172587": { "shortname": "diving.tank", "name": "Diving Tank", - "description": "An oxygen tank that enables breathing under water for a period of time. Can be refilled at a workbench." + "description": "An oxygen tank that enables breathing under water for a period of time. Can be refilled at a workbench or repair bench." }, "-1101924344": { "shortname": "diving.wetsuit", "name": "Wetsuit", "description": "A Wetsuit providing protection from frigid waters." }, + "-451310088": { + "shortname": "documents", + "name": "Documents", + "description": "A stack of technical looking documents." + }, "-1151332840": { "shortname": "door.double.hinged.bardoors", "name": "Wooden Frontier Bar Doors", - "description": "Hand-carved, rugged bar doors embody the spirit of the frontier. A must-have for any survivor." + "description": "A Cheap door to secure your base. Its vulnerability to fire and weak explosive resistance makes the door a temporary solution to securing your base. Due to its flaws you should look at upgrading to a higher tier door such as Sheet Metal.\n\nThe Wooden Door can take two kinds of locks the basic Key Lock and the Code Lock. To pick up the door, remove any locks and open, hold down the E (USE) key and select 'Pickup'." }, "-1336109173": { "shortname": "door.double.hinged.wood", @@ -2622,7 +3392,7 @@ "-258574361": { "shortname": "draculacape", "name": "Dracula Cape", - "description": "A robustly thick outer garment providing ample protection to the wearer." + "description": "A Halloween themed replacement for the Vagabond Jacket which flows in the wind." }, "-854270928": { "shortname": "dragondoorknocker", @@ -2669,6 +3439,11 @@ "name": "Button", "description": "A simple electric button." }, + "-1510616686": { + "shortname": "electric.chandelier", + "name": "Chandelier", + "description": "A large adjustable electric chandelier. Very fancy." + }, "-216999575": { "shortname": "electric.counter", "name": "Counter", @@ -2729,6 +3504,11 @@ "name": "RF Broadcaster", "description": "An RF Broadcaster" }, + "-948291630": { + "shortname": "electric.seismicsensor", + "name": "Seismic Sensor", + "description": "A small device that detects vibrations within a set range. Will output a different power value depending on the explosive type detected, ideal to know when your time has come." + }, "-282113991": { "shortname": "electric.simplelight", "name": "Simple Light", @@ -2739,6 +3519,16 @@ "name": "Splitter", "description": "Splits an electrical signal into 3 multiple signals. the amount passed through is equal to the input amount divided by the number of used output slots." }, + "-1258821205": { + "shortname": "electric.spotlight", + "name": "Spot Light", + "description": "A spotlight you can orient with a hammer." + }, + "-2134097299": { + "shortname": "electric.spotlight.tripod", + "name": "Tripod Spot Light", + "description": "A spotlight you can orient with a hammer." + }, "-781014061": { "shortname": "electric.sprinkler", "name": "Sprinkler", @@ -2914,6 +3704,11 @@ "name": "Fogger-3000", "description": "A Fog machine which runs on low grade fuel. Can be set to fill an area with a dense fog or triggered by motion." }, + "-1647389398": { + "shortname": "frankensteinmask", + "name": "Frankenstein Mask", + "description": "Frankenstein halloween costume mask which provides decent protection." + }, "-134959124": { "shortname": "frankensteins.monster.01.head", "name": "Light Frankenstein Head", @@ -2989,6 +3784,16 @@ "name": "Electric Fuse", "description": "An unreliable electric fuse. Will allow electrical passthrough for a period of time." }, + "-401905610": { + "shortname": "gates.external.high.adobe", + "name": "High External Adobe Gate", + "description": "A high stone gate, allowing access in and out of your compound." + }, + "-1442339204": { + "shortname": "gates.external.high.legacy", + "name": "High External Legacy Gate", + "description": "A legacy themed wooden gate to keep the untamed wilderness away from your property, it's seen better days. Replaces the High External Wooden Wall." + }, "-691113464": { "shortname": "gates.external.high.stone", "name": "High External Stone Gate", @@ -3111,33 +3916,43 @@ }, "-1759188988": { "shortname": "habrepair", - "name": "Hab Repair", - "description": "Hab repair" + "name": "Hot Air Balloon", + "description": "A Hot Air Balloon." + }, + "-1923843855": { + "shortname": "half.bamboo.shelves", + "name": "Half Height Bamboo Shelves", + "description": "Half height salvaged bamboo shelves for stacking" }, "-888153050": { "shortname": "halloween.candy", "name": "Halloween Candy", - "description": "Some loose halloween candy Collect 10 to upgrade to a Small Loot Bat!" + "description": "Some loose halloween candy Collect 10 to upgrade to a Small Loot Bag!" }, "-1785231475": { "shortname": "halloween.surgeonsuit", "name": "Surgeon Scrubs", - "description": "A Surgeon Suit" + "description": "A bloody surgeon outfit. Protects your entire body and provides good protection while giving off a creepy halloween vibe." }, "-1506397857": { "shortname": "hammer.salvaged", "name": "Salvaged Hammer", "description": "A Hammer made from a bunch of other crap." }, + "-839576748": { + "shortname": "handcuffs", + "name": "Handcuffs", + "description": "You're under arrest! Use on a surrendering or wounded player to keep them restrained. The wearer is blocked from using or holding items and can be pushed around." + }, "-23994173": { "shortname": "hat.boonie", "name": "Boonie Hat", - "description": "A boonie hat." + "description": "A boonie hat, offering minor protection from damage and cold for your head." }, "-1022661119": { "shortname": "hat.cap", "name": "Baseball Cap", - "description": "A baseball cap." + "description": "Simple hat for your head. Offers basic protection from damage and the cold." }, "-22883916": { "shortname": "hat.dragonmask", @@ -3154,6 +3969,16 @@ "name": "Rabbit Mask", "description": "A Beautifully crafted Rabbit mask to celebrate the 2023 Lunar New Year" }, + "-1314079879": { + "shortname": "hat.snakemask", + "name": "Snake mask", + "description": "A Beautifully crafted Snake mask to celebrate the 2025 Lunar New Year" + }, + "-507248640": { + "shortname": "hat.wellipets", + "name": "Wellipets Hat", + "description": "A hat made of wellipets boots" + }, "-1478212975": { "shortname": "hat.wolf", "name": "Wolf Headdress", @@ -3164,6 +3989,11 @@ "name": "Hatchet", "description": "A Hatchet, useful for chopping trees and dismembering corpses." }, + "-902423513": { + "shortname": "hazmat.krieg", + "name": "Krieg Hazmat", + "description": "A Krieg Hazmat Suit, standard issue for those who never retreat." + }, "-470439097": { "shortname": "hazmatsuit.arcticsuit", "name": "Arctic Suit", @@ -3171,8 +4001,13 @@ }, "-797592358": { "shortname": "hazmatsuit.diver", - "name": "Abyss Divers Suit", - "description": "A divers suit found in the abyss, doubles as a reliable hazmat suit" + "name": "Abyss Pack", + "description": "A damaged deep-water survival suit was found in the abyss. Although it may no longer serve its original purpose, it functions reliably as a Hazmat suit. Owning this suit also grants access to the Abyss Pickaxe, Abyss Hatchet, Abyss Torch, and Abyss AR." + }, + "-105415879": { + "shortname": "hazmatsuit.frontier", + "name": "Frontier Suit", + "description": "A Frontier suit" }, "-560304835": { "shortname": "hazmatsuit.spacesuit", @@ -3197,17 +4032,17 @@ "-2123125470": { "shortname": "healingtea.advanced", "name": "Advanced Healing Tea", - "description": "A tea that restores health over time." + "description": "An advanced healing tea, provides hydration and heals you a moderate amount over time." }, "-929092070": { "shortname": "healingtea", "name": "Basic Healing Tea", - "description": "A tea that restores health over time." + "description": "A basic healing tea, provides hydration and heals you a small amount over time." }, "-1677315902": { "shortname": "healingtea.pure", "name": "Pure Healing Tea", - "description": "A tea that restores health over time." + "description": "A pure healing tea, provides hydration and heals you a large amount over time." }, "-1102429027": { "shortname": "heavy.plate.jacket", @@ -3239,6 +4074,11 @@ "name": "Homing Missile Launcher", "description": "An active-guidance homing missile launcher. Once launched, the target must be tracked by the launcher until impact. Can be distracted by flares." }, + "-1513203236": { + "shortname": "honeycomb", + "name": "Honeycomb", + "description": "Building blocks of a hive, taken from a natural beehive. Can be cooked in a furnace to guarantee honey, or extracted for honey and a small chance of a nucleus." + }, "-1323101799": { "shortname": "horse.saddle.double", "name": "Double Horse Saddle", @@ -3269,6 +4109,11 @@ "name": "Raw Horse Meat", "description": "Raw Horse Meat. Eating it will damage your health, try cooking it first." }, + "-724146494": { + "shortname": "horsemeat.spoiled", + "name": "Spoiled Horse Meat", + "description": "Spoiled Horse Meat. Consuming will damage your health." + }, "-1982036270": { "shortname": "hq.metal.ore", "name": "High Quality Metal Ore", @@ -3307,7 +4152,7 @@ "-1163532624": { "shortname": "jacket", "name": "Jacket", - "description": "A rugged jacket." + "description": "A rugged jacket, will help keep you warm. High cold protection but incompatible with other chest attire." }, "-48090175": { "shortname": "jacket.snow", @@ -3324,6 +4169,11 @@ "name": "Jumpsuit", "description": "A Jumpsuit" }, + "-874908751": { + "shortname": "jumpsuit.waterwellnpc", + "name": "Waterwell NPC Jumpsuit", + "description": "A green jumpsuit and gasmask worn by the waterwell NPC" + }, "-484206264": { "shortname": "keycard_blue", "name": "Blue Keycard", @@ -3344,6 +4194,31 @@ "name": "Skinning Knife", "description": "A sharp skinning knife. Extremely good at harvesting flesh and can produce trophies that can be mounted on Hunting Trophies." }, + "-427072335": { + "shortname": "knightsarmour.helmet", + "name": "Knights armour helmet", + "description": "A medieval knights helmet. Made from scrap metal. Excellent craftmanship." + }, + "-945708533": { + "shortname": "knightsarmour.skirt", + "name": "Knights armour skirt plates", + "description": "A well made set of knights plate that covers the hips and thighs. Made of scrap metal." + }, + "-1770281406": { + "shortname": "krieg.chainsword", + "name": "Krieg chainsword", + "description": "A brutal tool of war, roaring to life with every swing." + }, + "-420889602": { + "shortname": "krieg.shotgun", + "name": "Krieg Shotgun", + "description": "Heavy, reliable, and unforgiving. A weapon that never hesitates." + }, + "-874650016": { + "shortname": "kriegbackpack", + "name": "Krieg Large Backpack", + "description": "Carry your essentials in a rugged military pack, built for endurance and practicality." + }, "-316250604": { "shortname": "ladder.wooden.wall", "name": "Wooden Ladder", @@ -3361,8 +4236,8 @@ }, "-73195037": { "shortname": "legacy bow", - "name": "Legacy bow", - "description": "Legacy Bow, useful for short to medium range combat and hunting." + "name": "Legacy Bow", + "description": "Hunting Bow, useful for short to medium range combat and hunting." }, "-1310391395": { "shortname": "legacyfurnace", @@ -3387,7 +4262,7 @@ "-850982208": { "shortname": "lock.key", "name": "Key Lock", - "description": "Place on a door to avoid any unwelcome guests. To craft your key first place the lock on a door and hold E while looking at the Key lock and select 'Create Key', a key will now be added to your crafting queue.\n\nIf the key is lost, you cannot make another, so don't forget to make extras and put them in a safe place!" + "description": "Place on a door to prevent unwelcome guests. You can create a key to share with your friends, don't let it fall in the wrong hands!" }, "-110921842": { "shortname": "locker", @@ -3412,7 +4287,7 @@ "-763071910": { "shortname": "lumberjack hoodie", "name": "Lumberjack Hoodie", - "description": "A Lumberjack Hoodie" + "description": "A lumberjack themed hoodie, earned by helping the Lumberjack. Offers the same protection as the standard hoodie." }, "-399173933": { "shortname": "lumberjack.hatchet", @@ -3427,7 +4302,7 @@ "-2026042603": { "shortname": "mace.baseballbat", "name": "Baseball Bat", - "description": "" + "description": "A baseball bat wrapped in barbed wire" }, "-1966748496": { "shortname": "mace", @@ -3444,10 +4319,15 @@ "name": "Mail Box", "description": "A Mailbox that accepts notes. Only you can access the mail due to a one way slit." }, + "-1035206446": { + "shortname": "mannequin", + "name": "Clothing Mannequin", + "description": "Displays a set of clothing, quickly remove items off your player onto the Mannequin. Goes by Manny." + }, "-2012470695": { "shortname": "mask.balaclava", "name": "Improvised Balaclava", - "description": "A home made balaclava." + "description": "A makeshift balaclava. Cost effective protection from the cold, but unremarkable at preventing melee and projectile damage." }, "-702051347": { "shortname": "mask.bandana", @@ -3457,13 +4337,23 @@ "-1184406448": { "shortname": "maxhealthtea", "name": "Basic Max Health Tea", - "description": "A tea that increases your maximum health." + "description": "A basic health tea, provides hydration and temporarily boosts maximum health a small amount." }, "-242084766": { "shortname": "meat.pork.cooked", "name": "Cooked Pork", "description": "Cooked pork, Eating it will restore some health, hunger, and thirst." }, + "-380502678": { + "shortname": "medieval.door.double.hinged.metal", + "name": "Medieval Sheet Metal Double Door", + "description": "Medium strength door, vulnerable to explosives." + }, + "-1654401345": { + "shortname": "medieval.door.hinged.metal", + "name": "Medieval Sheet Metal Door", + "description": "Medium strength door, vulnerable to explosives." + }, "-583379016": { "shortname": "megaphone", "name": "Megaphone", @@ -3494,6 +4384,16 @@ "name": "Metal Spring", "description": "A metal spring. Used to provide motion or resistance in objects." }, + "-1334255764": { + "shortname": "minicopter", + "name": "Minicopter", + "description": "Minicopter" + }, + "-482348853": { + "shortname": "minicrossbow", + "name": "Mini Crossbow", + "description": "A very accurate ranged weapon with a rotating barrel." + }, "-1130709577": { "shortname": "mining.pumpjack", "name": "Pump Jack", @@ -3507,12 +4407,17 @@ "-20045316": { "shortname": "mobilephone", "name": "Mobile Phone", - "description": "A mobile phone that lets you place calls from anywhere. Truly cutting edge Cobalt technology. Use [attack] to access the dialler." + "description": "A mobile phone that lets you place calls from anywhere. Truly cutting edge Cobalt technology. Use [attack] to access the dialer." + }, + "-1417478274": { + "shortname": "motorbike", + "name": "Motorbike", + "description": "A motorbike." }, "-2047081330": { "shortname": "movembermoustache", "name": "Movember Moustache", - "description": "A magnificent moustache for Movember" + "description": "A magnificent moustache (it acts as a hairy bandana) - all proceeds go to Movember, a charity promoting men's health awareness," }, "-1123473824": { "shortname": "multiplegrenadelauncher", @@ -3534,11 +4439,21 @@ "name": "Night Vision Goggles", "description": "Enables vision at nighttime by projecting and amplifying infrared light.The batteries can be recharged at a Lvl 2 workbench. Cannot be worn with a helmet." }, + "-1811234677": { + "shortname": "nucleus", + "name": "Beehive Nucleus", + "description": "The heart of any hive, needed for raising bees. Produce honeycomb from happy bees to grow the nucleus and increase yields." + }, "-282193997": { "shortname": "orangeidtag", "name": "Orange ID Tag", "description": "Orange ID Tag" }, + "-2133781216": { + "shortname": "oubreak_scientist", + "name": "Outbreak Scientist Suit", + "description": "A outbreak scientist suit" + }, "-733625651": { "shortname": "paddlingpool", "name": "Paddling Pool", @@ -3547,7 +4462,7 @@ "-1695367501": { "shortname": "pants.shorts", "name": "Shorts", - "description": "Trousers without the bottom of the legs." + "description": "Trusty pair of shorts, may provide a breeze in undesired places. Worse than their full length counterparts with only basic protection from damage and the elements." }, "-1779183908": { "shortname": "paper", @@ -3564,6 +4479,21 @@ "name": "Pickaxe", "description": "A Pickaxe, useful for gathering ore from rocks." }, + "-1785248332": { + "shortname": "pie.fish", + "name": "Fish Pie", + "description": "Delightful fish pie. Provides a boost to hunger, health and hydration. Increases base comfort level for a short time." + }, + "-1488408786": { + "shortname": "pie.pumpkin", + "name": "Pumpkin Pie", + "description": "Spooky pumpkin pie, provides a boost to health, hunger and hydration. Increases maximum health for a short time." + }, + "-963820355": { + "shortname": "pie.survivors", + "name": "Survivor's Pie", + "description": "It's people. Survivor's pie is made out of people. Provides a boost to health, hunger and hydration. Increases yield when harvesting corpses for a short time." + }, "-1442496789": { "shortname": "pinata", "name": "Pinata", @@ -3589,11 +4519,21 @@ "name": "Water Pistol", "description": "A small water gun that doesn't require pumping, but has a lower range and output." }, + "-280812482": { + "shortname": "planter.triangle", + "name": "Triangle Planter Box", + "description": "A triangle planter with enough room to plant 4 seeds." + }, "-804769727": { "shortname": "plantfiber", "name": "Plant Fiber", "description": "Fiber from dead plants. Can be composted." }, + "-430416124": { + "shortname": "plantpot.single", + "name": "Single Plant Pot", + "description": "A single plant pot." + }, "-1651220691": { "shortname": "pookie.bear", "name": "Pookie Bear", @@ -3609,6 +4549,11 @@ "name": "Powered Water Purifier", "description": "A device that converts salt water to fresh water while powered." }, + "-892718768": { + "shortname": "prisonerhood", + "name": "Prisoner Hood", + "description": "A hood for prisoners, restricts vision." + }, "-1673693549": { "shortname": "propanetank", "name": "Empty Propane Tank", @@ -3619,6 +4564,11 @@ "name": "Pumpkin", "description": "An edible vegetable that can also be worn as a hat. Eating it provides a small boost to health, hunger, and thirst." }, + "-1476814093": { + "shortname": "purewarmingtea", + "name": "Pure Warming Tea", + "description": "A pure warming tea that temporarily increases both your core and minimum temperature." + }, "-1386082991": { "shortname": "purpleidtag", "name": "Purple ID Tag", @@ -3631,18 +4581,18 @@ }, "-1729415579": { "shortname": "radiationresisttea.advanced", - "name": "Adv. Anti-Rad Tea", - "description": "A tea that reduces the amount of health lost due to radiation." + "name": "Advanced Anti-Rad Tea", + "description": "An advanced tea that provides some hydration and temporarily increases your resistance to radiation a moderate amount." }, "-487356515": { "shortname": "radiationresisttea", - "name": "Anti-Rad Tea", - "description": "A tea that reduces the amount of health lost due to radiation." + "name": "Basic Anti-Rad Tea", + "description": "A basic tea that provides hydration and temporarily increases your resistance to radiation a small amount." }, "-33009419": { "shortname": "radiationresisttea.pure", "name": "Pure Anti-Rad Tea", - "description": "A tea that reduces the amount of health lost due to radiation." + "description": "A pure tea that provides hydration and temporarily increases your resistance to radiation a large amount." }, "-602717596": { "shortname": "reddogtags", @@ -3659,6 +4609,11 @@ "name": "Research Paper", "description": "Use this item in a Research Bench to create blueprints of items." }, + "-92315244": { + "shortname": "revolver.hc", + "name": "High Caliber Revolver", + "description": "High Caliber Revolver" + }, "-566907190": { "shortname": "rf_pager", "name": "RF Pager", @@ -3671,7 +4626,7 @@ }, "-1335497659": { "shortname": "rifle.ak.ice", - "name": "Assault Rifle - ICE", + "name": "Ice Assault Rifle", "description": "Ice-covered high damage machine rifle." }, "-778367295": { @@ -3689,10 +4644,15 @@ "name": "Semi-Automatic Rifle", "description": "A Semi Automatic Rifle." }, + "-348232115": { + "shortname": "rifle.sks", + "name": "SKS", + "description": "A Military-Grade Semi Automatic Rifle." + }, "-699558439": { "shortname": "roadsign.gloves", - "name": "Roadsign Gloves", - "description": "Gloves made out of metal offers a good amount of protection to the upper body." + "name": "Road Sign Gloves", + "description": "Gloves made out of metal, offer a good amount of protection to the upper body." }, "-2002277461": { "shortname": "roadsign.jacket", @@ -3702,7 +4662,7 @@ "-1315992997": { "shortname": "rocket.launcher.dragon", "name": "Dragon Rocket Launcher", - "description": "Shoots rockets slightly farther than North Korea." + "description": "Unmatched craftsmanship meets devastating firepower." }, "-1863063690": { "shortname": "rockingchair", @@ -3749,6 +4709,16 @@ "name": "Rustigé Egg - White", "description": "A beautiful hand crafted gold and white egg, with a miniature underwater lab scene contained inside." }, + "-173268127": { + "shortname": "rustige_egg_g", + "name": "Rustigé Egg - Cerulean", + "description": "A beautiful hand crafted cerulean and gold egg, with a miniature cargo ship scene contained inside." + }, + "-2110553371": { + "shortname": "salvaged.bamboo.shelves", + "name": "Bamboo Salvaged Shelves", + "description": "Bamboo shelves for item stacking" + }, "-1978999529": { "shortname": "salvaged.cleaver", "name": "Salvaged Cleaver", @@ -3811,8 +4781,13 @@ }, "-1884328185": { "shortname": "scraptransportheli.repair", - "name": "ScrapTransportHeliRepair", - "description": "ScrapTransportHeliRepair Dummy" + "name": "Scrap Transport Helicopter", + "description": null + }, + "-374457631": { + "shortname": "sedan", + "name": "Sedan", + "description": "Sedan" }, "-1776128552": { "shortname": "seed.green.berry", @@ -3822,27 +4797,37 @@ "-237809779": { "shortname": "seed.hemp", "name": "Hemp Seed", - "description": "Hemp seeds can be found when picking wild Hemp. These seeds can be planted in the ground and grown to collect additional cloth.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more cloth and faster groth." + "description": "Hemp seeds can be found when picking wild Hemp. These seeds can be planted in the ground and grown to collect additional cloth.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more cloth and faster growth." }, "-2084071424": { "shortname": "seed.potato", "name": "Potato Seed", - "description": "These potato seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more Corn and faster groth." + "description": "These potato seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more potatoes and faster growth." }, "-1511285251": { "shortname": "seed.pumpkin", "name": "Pumpkin Seed", - "description": "Pumpkin Seeds can be found when picking wild Pumpkin plants. These seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more Pumpkins and faster groth." + "description": "Pumpkin Seeds can be found when picking wild Pumpkin plants. These seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more pumpkins and faster growth." + }, + "-1037472336": { + "shortname": "seed.rose", + "name": "Rose Seed", + "description": "Rose seeds can be found when picking wild Roses." + }, + "-1790885730": { + "shortname": "seed.wheat", + "name": "Wheat Seed", + "description": "Wheat seeds, found when eating wheat or harvesting wild crops. Plant in the ground or a planter to grow more. Seeds grown in good conditions will have higher yields and grow faster." }, "-992286106": { "shortname": "seed.white.berry", "name": "White Berry Seed", - "description": "These white berry seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more Corn and faster groth." + "description": "These white berry seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more berries and faster growth." }, "-520133715": { "shortname": "seed.yellow.berry", "name": "Yellow Berry Seed", - "description": "These yellow berry seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more Corn and faster groth." + "description": "These yellow berry seeds can be planted in the ground and grown to collect additional food.\n\n\nPlanting these seeds in a planter, and then watering them with large quantities of water yields significantly more berries and faster growth." }, "-1994909036": { "shortname": "sheetmetal", @@ -3852,12 +4837,12 @@ "-2025184684": { "shortname": "shirt.collared", "name": "Shirt", - "description": "A smart casual shirt" + "description": "A smart casual shirt. Might make you look more trustworthy. Moderate clothing for protection against damage and the elements." }, "-1549739227": { "shortname": "shoes.boots", "name": "Boots", - "description": "Work boots." + "description": "Sturdy work boots to keep your toes safe, you'd feel nothing if you kicked a table leg. Strong protection against the cold and incoming damage." }, "-765183617": { "shortname": "shotgun.double", @@ -3899,6 +4884,11 @@ "name": "Sickle", "description": "A very sharp curved cutting weapon. While its traditional role was to cut grass, this tool is also extremely versatile at cutting throats, perhaps trees, too." }, + "-1290278434": { + "shortname": "siegetower", + "name": "Siege Tower", + "description": "A rolling siege tower, providing cover and access to enemy bases. Can be locked with your own door. Can be towed by horses." + }, "-1647846966": { "shortname": "sign.hanging.ornate", "name": "Two Sided Ornate Hanging Sign", @@ -3944,6 +4934,16 @@ "name": "Small Wooden Sign", "description": "A 1-meter by 0.5-meter wooden sign that you can write on." }, + "-193519904": { + "shortname": "single.shallow.wall.shelves", + "name": "Single Shallow Wall Shelves", + "description": "Single Shallow Wall Shelves" + }, + "-1056824343": { + "shortname": "skidoo", + "name": "Diver propulsion vehicle", + "description": "A personal underwater propulsion device" + }, "-924959988": { "shortname": "skull.trophy.jar2", "name": "Skull Trophy", @@ -3962,7 +4962,7 @@ "-216116642": { "shortname": "skulldoorknocker", "name": "Skull Door Knocker", - "description": "A spooky skull door knocker" + "description": "A spooky heavy iron door knocker. Its haunted skull will produce flames when distrubed." }, "-25740268": { "shortname": "skullspikes.candles", @@ -3982,17 +4982,17 @@ "-1770889433": { "shortname": "skylantern.skylantern.green", "name": "Sky Lantern - Green", - "description": "" + "description": "#skylantern.skylantern.green.desc" }, "-1824770114": { "shortname": "skylantern.skylantern.orange", "name": "Sky Lantern - Orange", - "description": "" + "description": "#skylantern.skylantern.orange.desc" }, "-1433390281": { "shortname": "skylantern.skylantern.red", "name": "Sky Lantern - Red", - "description": "" + "description": "#skylantern.skylantern.red.desc" }, "-333406828": { "shortname": "sled", @@ -4007,7 +5007,7 @@ "-1754948969": { "shortname": "sleepingbag", "name": "Sleeping Bag", - "description": "A sleeping bag. Placing this will give you a location to respawn." + "description": "A sleeping bag. Placing this will give you or an assigned player a place to respawn, with a long cooldown." }, "-1293296287": { "shortname": "small.oil.refinery", @@ -4034,6 +5034,21 @@ "name": "Thompson", "description": "A medium damage machine gun." }, + "-170436364": { + "shortname": "snakemeat.cooked", + "name": "Cooked Snake Meat", + "description": "Delicious Snake Meat, Eating it will restore some health, hunger, and thirst." + }, + "-2100458529": { + "shortname": "snakemeat", + "name": "Raw Snake Meat", + "description": "Raw Snake Meat. Eating it will damage your health, try cooking it first." + }, + "-1616704051": { + "shortname": "snakemeat.spoiled", + "name": "Spoiled Snake Meat", + "description": "Spoiled Snake Meat. Consuming will damage your health." + }, "-363689972": { "shortname": "snowball", "name": "Snowball", @@ -4079,9 +5094,14 @@ "name": "Wooden Floor Spikes", "description": "A set of spikes that will slow down and hurt anyone that walks over them." }, + "-1850297170": { + "shortname": "spikes.trap", + "name": "Small Spike Trap", + "description": "A small improvised trap that injures and slows anyone who steps on it." + }, "-1100422738": { "shortname": "spinner.wheel", - "name": "Spinning wheel", + "name": "Spinning Wheel", "description": "An interactive spinning wheel." }, "-596876839": { @@ -4092,7 +5112,7 @@ "-1366326648": { "shortname": "spraycandecal", "name": "Spray Can Decal", - "description": "" + "description": null }, "-369760990": { "shortname": "stash.small", @@ -4149,6 +5169,11 @@ "name": "Sulfur Ore", "description": "A rock containing sulfur. The sulfur can be extracted using a furnace." }, + "-611118083": { + "shortname": "sunflower", + "name": "Sunflower", + "description": "Very tall." + }, "-2103694546": { "shortname": "sunglasses02camo", "name": "Sunglasses", @@ -4222,12 +5247,12 @@ "-561148628": { "shortname": "tugboat", "name": "Tugboat", - "description": "" + "description": null }, "-1478445584": { "shortname": "tunalight", "name": "Tuna Can Lamp", - "description": "A Makeshift wall light." + "description": "A makeshift wall light. Still smells faintly of fish." }, "-1569700847": { "shortname": "twitch.headset", @@ -4239,6 +5264,11 @@ "name": "Twitch Rivals Desk", "description": "Twitch Rivals Desk" }, + "-739993590": { + "shortname": "twitchrivalsflag", + "name": "Twitch Rivals Flag", + "description": "A wearable flag for Twitch Rivals" + }, "-1683726934": { "shortname": "twowaymirror.window", "name": "Two-Way Mirror", @@ -4299,6 +5329,11 @@ "name": "Large Chassis", "description": "Four-socket vehicle chassis." }, + "-870140677": { + "shortname": "venom.snake", + "name": "Snake Venom", + "description": "The venom of a snake. Used to create Incapacitate darts." + }, "-1416322465": { "shortname": "walkietalkie", "name": "Walkie Talkie", @@ -4309,6 +5344,11 @@ "name": "High Ice Wall", "description": "A very high ice wall to protect your property." }, + "-1993883724": { + "shortname": "wall.external.high.legacy", + "name": "High External Legacy Wall", + "description": "A legacy themed wooden wall to keep the untamed wilderness away from your property, made with questionable carpentry. Replaces the High External Wooden Wall." + }, "-967648160": { "shortname": "wall.external.high.stone", "name": "High External Stone Wall", @@ -4334,6 +5374,16 @@ "name": "Garage Door", "description": "A garage door that rolls up and down." }, + "-450890885": { + "shortname": "wall.frame.lunar2025_b", + "name": "Wall Divider Pack", + "description": "A Lunar New Year themed decorative wall divider with swirling inlay" + }, + "-2016974826": { + "shortname": "wall.frame.lunar2025_c", + "name": "Wall Divider Pack", + "description": "A Lunar New Year themed decorative wall divider with floral inlay" + }, "-796583652": { "shortname": "wall.frame.shopfront", "name": "Shop Front", @@ -4362,7 +5412,12 @@ "-1614955425": { "shortname": "wall.window.glass.reinforced", "name": "Strengthened Glass Window", - "description": "Bulletproof glass insert" + "description": "Strengthened Glass Window" + }, + "-551431036": { + "shortname": "wallpaper.flooring", + "name": "Wallpaper Flooring", + "description": null }, "-1344017968": { "shortname": "wantedposter", @@ -4374,6 +5429,11 @@ "name": "Wanted Poster 3", "description": "A poster that can display a given player's face as wanted." }, + "-1142222427": { + "shortname": "warmingtea", + "name": "Basic Warming Tea", + "description": "A basic warming tea that temporarily increases both your core and minimum temperature." + }, "-463122489": { "shortname": "watchtower.wood", "name": "Watch Tower", @@ -4407,13 +5467,18 @@ "-119235651": { "shortname": "waterjug", "name": "Water Jug", - "description": "A large jerry can for water." + "description": "A large jerry can for all kinds of water. Holds up to 5000ml. Careful not to throw it all away!" }, "-1284169891": { "shortname": "waterpump", "name": "Water Pump", "description": "Can be placed in a water source to collect that water while powered. Can be connected to other Water entities." }, + "-1767794021": { + "shortname": "weapon.mod.gascompressionovedrive", + "name": "Gas Compression Overdrive", + "description": "An internal weapon mod which compresses and directs gasses used for cycling the weapon to the barrel, effectively increasing projectile velocity and damage at the expense of cycle rate." + }, "-132516482": { "shortname": "weapon.mod.lasersight", "name": "Weapon Lasersight", @@ -4422,11 +5487,16 @@ "-1405508498": { "shortname": "weapon.mod.muzzleboost", "name": "Muzzle Boost", - "description": "Increases weapon fire rate by channeling gasses back into the weapon cycling it faster, at the cost of bullet velocity and accuracy." + "description": "Increases weapon fire rate by channeling gasses back into the weapon cycling it faster, at the cost of bullet accuracy." + }, + "-781866273": { + "shortname": "weapon.mod.oilfiltersilencer", + "name": "Oil Filter Silencer", + "description": "Significantly reduces the sound of gunfire, and completely removes any visible muzzle flash. Fashioned out of an old oil filter, this won't last long." }, "-1850571427": { "shortname": "weapon.mod.silencer", - "name": "Silencer", + "name": "Military Silencer", "description": "Significantly reduces the sound of gunfire, and completely removes any visible muzzle flash." }, "-855748505": { @@ -4434,11 +5504,21 @@ "name": "Simple Handmade Sight", "description": "A poorly made sight, slightly better than iron sights." }, + "-1659598760": { + "shortname": "weapon.mod.sodacansilencer", + "name": "Soda Can Silencer", + "description": "Significantly reduces the sound of gunfire, and completely removes any visible muzzle flash. Crudely made out of a soda can, this will only survive a few shots." + }, "-1163943815": { "shortname": "weaponrack.light", "name": "Weapon Rack Light", "description": "A weapon rack light." }, + "-526026171": { + "shortname": "wicker.barrel", + "name": "Wicker Barrel", + "description": "Keep your things in this wicker barrel. Stores up to 48 items. Cannot be locked." + }, "-144417939": { "shortname": "wiretool", "name": "Wire Tool", @@ -4457,13 +5537,18 @@ "-2094954543": { "shortname": "wood.armor.helmet", "name": "Wood Armor Helmet", - "description": "A shoddy helmet made from Wood and Cloth." + "description": "A shoddy helmet made from simple materials, provides some basic protection from melee and ranged attacks." }, "-151838493": { "shortname": "wood", "name": "Wood", "description": "Wood. Collected from trees and used in many crafting recipes. It's also needed to cook in camp-fires." }, + "-459159118": { + "shortname": "woodarmor.gloves", + "name": "Wood Armor Gloves", + "description": "Gloves made out of wood and leather, offers some protection to the upper body." + }, "-635951327": { "shortname": "woodframe.large", "name": "Wood Frame Large", @@ -4482,22 +5567,22 @@ "-1497205569": { "shortname": "woodmirror.small", "name": "Wood Mirror Small", - "description": "A small wooden mirror" + "description": "A small wooden frame" }, "-541206665": { "shortname": "woodtea.advanced", "name": "Advanced Wood Tea", - "description": "A tea that increases the amount of wood you receive from trees." + "description": "An advanced wood tea, temporarily increases the yield from cutting trees a moderate amount." }, "-649128577": { "shortname": "woodtea", "name": "Basic Wood Tea", - "description": "A tea that increases the amount of wood you receive from trees." + "description": "A basic wood tea, temporarily increases the yield from cutting trees a small amount." }, "-557539629": { "shortname": "woodtea.pure", "name": "Pure Wood Tea", - "description": "A tea that increases the amount of wood you receive from trees." + "description": "A pure wood tea, temporarily increases the yield from cutting trees a large amount." }, "-41896755": { "shortname": "workbench2", @@ -4547,7 +5632,7 @@ "-151387974": { "shortname": "xmas.lightstring.advanced", "name": "Deluxe Christmas Lights", - "description": "Colored, Animated, Powered Lights. Requires 5 electricity. Click to start placement, right click to end. Each unit is 0.5m long." + "description": "Colored, animated, powered Lights that can be deployed point by point to light up your base." }, "-1622660759": { "shortname": "xmas.present.large", diff --git a/src/staticFiles/rustlabsCraftData.json b/src/staticFiles/rustlabsCraftData.json index db2df8428..31c74436f 100644 --- a/src/staticFiles/rustlabsCraftData.json +++ b/src/staticFiles/rustlabsCraftData.json @@ -801,12 +801,8 @@ "596469572": { "ingredients": [ { - "id": "317398316", - "quantity": 5 - }, - { - "id": "73681876", - "quantity": 1 + "id": "69511070", + "quantity": 100 } ], "workbench": "-41896755", @@ -1007,8 +1003,8 @@ } ], "workbench": "-1607980696", - "time": 30, - "timeString": "30 sec" + "time": 15, + "timeString": "15 sec" }, "674734128": { "ingredients": [ @@ -1294,11 +1290,7 @@ "ingredients": [ { "id": "69511070", - "quantity": 100 - }, - { - "id": "73681876", - "quantity": 1 + "quantity": 150 } ], "workbench": "-41896755", @@ -1375,6 +1367,25 @@ "time": 12.5, "timeString": "5–20 sec" }, + "962186730": { + "ingredients": [ + { + "id": "-151838493", + "quantity": 100 + }, + { + "id": "1414245522", + "quantity": 1 + }, + { + "id": "-1557377697", + "quantity": 2 + } + ], + "workbench": "1524187186", + "time": 12.5, + "timeString": "5–20 sec" + }, "963906841": { "ingredients": [ { @@ -1547,7 +1558,7 @@ }, { "id": "317398316", - "quantity": 25 + "quantity": 18 }, { "id": "1234880403", @@ -2580,10 +2591,6 @@ "id": "69511070", "quantity": 200 }, - { - "id": "73681876", - "quantity": 2 - }, { "id": "634478325", "quantity": 1 @@ -2619,6 +2626,17 @@ "time": 9.375, "timeString": "3–15 sec" }, + "1619039771": { + "ingredients": [ + { + "id": "69511070", + "quantity": 100 + } + ], + "workbench": "-41896755", + "time": 22.5, + "timeString": "15–30 sec" + }, "1623701499": { "ingredients": [ { @@ -2657,15 +2675,11 @@ }, { "id": "-265876753", - "quantity": 250 + "quantity": 150 }, { "id": "-946369541", - "quantity": 250 - }, - { - "id": "-592016202", - "quantity": 1 + "quantity": 75 } ], "workbench": "-41896755", @@ -2792,7 +2806,7 @@ }, { "id": "-265876753", - "quantity": 20 + "quantity": 10 } ], "workbench": "-1607980696", @@ -4517,6 +4531,17 @@ "time": 22.5, "timeString": "15–30 sec" }, + "-1767794021": { + "ingredients": [ + { + "id": "317398316", + "quantity": 10 + } + ], + "workbench": "-41896755", + "time": 22.5, + "timeString": "15–30 sec" + }, "-695124222": { "ingredients": [ { @@ -4577,6 +4602,17 @@ "time": 1.25, "timeString": "1–2 sec" }, + "-839576748": { + "ingredients": [ + { + "id": "69511070", + "quantity": 70 + } + ], + "workbench": "-41896755", + "time": 11.25, + "timeString": "7–15 sec" + }, "-1252059217": { "ingredients": [ { @@ -4775,7 +4811,7 @@ }, { "id": "479143914", - "quantity": 3 + "quantity": 2 } ], "workbench": "-1607980696", @@ -4876,7 +4912,7 @@ }, { "id": "-265876753", - "quantity": 20 + "quantity": 10 } ], "workbench": "-41896755", @@ -5331,8 +5367,8 @@ } ], "workbench": "1524187186", - "time": 18.75, - "timeString": "7–30 sec" + "time": 9.375, + "timeString": "3–15 sec" }, "-1539025626": { "ingredients": [ @@ -5633,6 +5669,17 @@ "time": 22.5, "timeString": "15–30 sec" }, + "-892718768": { + "ingredients": [ + { + "id": "-858312878", + "quantity": 20 + } + ], + "workbench": "1524187186", + "time": 9.375, + "timeString": "3–15 sec" + }, "-986782031": { "ingredients": [ { @@ -5746,11 +5793,7 @@ "ingredients": [ { "id": "69511070", - "quantity": 100 - }, - { - "id": "73681876", - "quantity": 1 + "quantity": 150 } ], "workbench": "-41896755", @@ -5761,11 +5804,7 @@ "ingredients": [ { "id": "69511070", - "quantity": 50 - }, - { - "id": "73681876", - "quantity": 1 + "quantity": 100 } ], "workbench": "-41896755", @@ -6048,6 +6087,21 @@ "time": 3.125, "timeString": "1–5 sec" }, + "-948291630": { + "ingredients": [ + { + "id": "317398316", + "quantity": 3 + }, + { + "id": "73681876", + "quantity": 1 + } + ], + "workbench": "-41896755", + "time": 22.5, + "timeString": "15–30 sec" + }, "-904863145": { "ingredients": [ { @@ -6528,8 +6582,8 @@ } ], "workbench": "-41896755", - "time": 22.5, - "timeString": "15–30 sec" + "time": 11.25, + "timeString": "7–15 sec" }, "-1785231475": { "ingredients": [ @@ -6704,6 +6758,17 @@ "time": 6.25, "timeString": "2–10 sec" }, + "-1501434104": { + "ingredients": [ + { + "id": "-858312878", + "quantity": 10 + } + ], + "workbench": null, + "time": 3.125, + "timeString": "1–5 sec" + }, "-1344017968": { "ingredients": [ { @@ -6899,8 +6964,8 @@ } ], "workbench": null, - "time": 18.75, - "timeString": "7–30 sec" + "time": 9.375, + "timeString": "3–15 sec" }, "-180129657": { "ingredients": [ @@ -6973,8 +7038,8 @@ } ], "workbench": null, - "time": 18.75, - "timeString": "7–30 sec" + "time": 9.375, + "timeString": "3–15 sec" }, "-41896755": { "ingredients": [ diff --git a/src/staticFiles/rustlabsDecayData.json b/src/staticFiles/rustlabsDecayData.json index 3640eee03..dd663bd5c 100644 --- a/src/staticFiles/rustlabsDecayData.json +++ b/src/staticFiles/rustlabsDecayData.json @@ -1,8 +1,8 @@ { "items": { "15388698": { - "decay": 28800, - "decayString": "8 hours", + "decay": 900, + "decayString": "15 min", "decayOutside": null, "decayOutsideString": null, "decayInside": null, @@ -264,6 +264,18 @@ "hp": 100, "hpString": "100" }, + "962186730": { + "decay": 7200, + "decayString": "2 hours", + "decayOutside": null, + "decayOutsideString": null, + "decayInside": null, + "decayInsideString": null, + "decayUnderwater": null, + "decayUnderwaterString": null, + "hp": 50, + "hpString": "50" + }, "968421290": { "decay": 345600, "decayString": "96 hours", @@ -420,9 +432,21 @@ "hp": 100, "hpString": "100" }, + "1371909803": { + "decay": 28800, + "decayString": "8 hours", + "decayOutside": null, + "decayOutsideString": null, + "decayInside": null, + "decayInsideString": null, + "decayUnderwater": null, + "decayUnderwaterString": null, + "hp": 250, + "hpString": "250" + }, "1373240771": { - "decay": 7200, - "decayString": "2 hours", + "decay": 900, + "decayString": "15 min", "decayOutside": null, "decayOutsideString": null, "decayInside": null, @@ -540,6 +564,18 @@ "hp": 100, "hpString": "100" }, + "1619039771": { + "decay": 28800, + "decayString": "8 hours", + "decayOutside": null, + "decayOutsideString": null, + "decayInside": null, + "decayInsideString": null, + "decayUnderwater": null, + "decayUnderwaterString": null, + "hp": 100, + "hpString": "100" + }, "1629293099": { "decay": 345600, "decayString": "96 hours", @@ -853,8 +889,8 @@ "hpString": "500" }, "-1950721390": { - "decay": 259200, - "decayString": "72 hours", + "decay": 900, + "decayString": "15 min", "decayOutside": null, "decayOutsideString": null, "decayInside": null, @@ -1032,6 +1068,18 @@ "hp": 100, "hpString": "100" }, + "-44876289": { + "decay": 28800, + "decayString": "8 hours", + "decayOutside": null, + "decayOutsideString": null, + "decayInside": null, + "decayInsideString": null, + "decayUnderwater": null, + "decayUnderwaterString": null, + "hp": 250, + "hpString": "250" + }, "-1824943010": { "decay": 86400, "decayString": "24 hours", @@ -1225,6 +1273,18 @@ "hpString": "1000" }, "-559599960": { + "decay": 900, + "decayString": "15 min", + "decayOutside": null, + "decayOutsideString": null, + "decayInside": null, + "decayInsideString": null, + "decayUnderwater": null, + "decayUnderwaterString": null, + "hp": 200, + "hpString": "200" + }, + "-948291630": { "decay": 28800, "decayString": "8 hours", "decayOutside": null, @@ -2740,6 +2800,18 @@ "hp": 850, "hpString": "850" }, + "Bike": { + "decay": null, + "decayString": null, + "decayOutside": 86400, + "decayOutsideString": "24 hours", + "decayInside": null, + "decayInsideString": null, + "decayUnderwater": null, + "decayUnderwaterString": null, + "hp": 250, + "hpString": "250" + }, "Duo Submarine": { "decay": null, "decayString": null, @@ -2788,6 +2860,18 @@ "hp": 400, "hpString": "400" }, + "Motorbike": { + "decay": null, + "decayString": null, + "decayOutside": 86400, + "decayOutsideString": "24 hours", + "decayInside": null, + "decayInsideString": null, + "decayUnderwater": null, + "decayUnderwaterString": null, + "hp": 300, + "hpString": "300" + }, "RHIB": { "decay": null, "decayString": null, @@ -2812,6 +2896,18 @@ "hp": 1000, "hpString": "1000" }, + "Sidecar Motorbike": { + "decay": null, + "decayString": null, + "decayOutside": 86400, + "decayOutsideString": "24 hours", + "decayInside": null, + "decayInsideString": null, + "decayUnderwater": null, + "decayUnderwaterString": null, + "hp": 350, + "hpString": "350" + }, "Snowmobile": { "decay": null, "decayString": null, @@ -2836,6 +2932,18 @@ "hp": 500, "hpString": "500" }, + "Trike": { + "decay": null, + "decayString": null, + "decayOutside": 86400, + "decayOutsideString": "24 hours", + "decayInside": null, + "decayInsideString": null, + "decayUnderwater": null, + "decayUnderwaterString": null, + "hp": 275, + "hpString": "275" + }, "Tugboat": { "decay": null, "decayString": null, diff --git a/src/staticFiles/rustlabsDespawnData.json b/src/staticFiles/rustlabsDespawnData.json index d212f3d7f..1a7d2d701 100644 --- a/src/staticFiles/rustlabsDespawnData.json +++ b/src/staticFiles/rustlabsDespawnData.json @@ -451,6 +451,10 @@ "time": 300, "timeString": "5 min" }, + "703057617": { + "time": 2400, + "timeString": "40 min" + }, "709206314": { "time": 300, "timeString": "5 min" @@ -603,6 +607,10 @@ "time": 300, "timeString": "5 min" }, + "935606207": { + "time": 3600, + "timeString": "1 hour" + }, "935692442": { "time": 300, "timeString": "5 min" @@ -619,6 +627,10 @@ "time": 300, "timeString": "5 min" }, + "962186730": { + "time": 1200, + "timeString": "20 min" + }, "963906841": { "time": 300, "timeString": "5 min" @@ -1143,6 +1155,10 @@ "time": 300, "timeString": "5 min" }, + "1619039771": { + "time": 1200, + "timeString": "20 min" + }, "1623701499": { "time": 300, "timeString": "5 min" @@ -2011,6 +2027,10 @@ "time": 1200, "timeString": "20 min" }, + "-1767794021": { + "time": 2400, + "timeString": "40 min" + }, "-1043618880": { "time": 2400, "timeString": "40 min" @@ -2071,6 +2091,10 @@ "time": 300, "timeString": "5 min" }, + "-839576748": { + "time": 1200, + "timeString": "20 min" + }, "-1252059217": { "time": 1200, "timeString": "20 min" @@ -2172,8 +2196,8 @@ "timeString": "40 min" }, "-218009552": { - "time": 3600, - "timeString": "1 hour" + "time": 2400, + "timeString": "40 min" }, "-246672609": { "time": 300, @@ -2515,6 +2539,10 @@ "time": 1200, "timeString": "20 min" }, + "-892718768": { + "time": 300, + "timeString": "5 min" + }, "-1130709577": { "time": 300, "timeString": "5 min" @@ -2719,6 +2747,10 @@ "time": 1200, "timeString": "20 min" }, + "-948291630": { + "time": 1200, + "timeString": "20 min" + }, "-904863145": { "time": 2400, "timeString": "40 min" @@ -3003,6 +3035,10 @@ "time": 300, "timeString": "5 min" }, + "-1501434104": { + "time": 300, + "timeString": "5 min" + }, "-1344017968": { "time": 300, "timeString": "5 min" diff --git a/src/staticFiles/rustlabsDurabilityData.json b/src/staticFiles/rustlabsDurabilityData.json index 8b4b237e3..10f7949ab 100644 --- a/src/staticFiles/rustlabsDurabilityData.json +++ b/src/staticFiles/rustlabsDurabilityData.json @@ -59,17 +59,17 @@ "time": 28, "timeString": "28 sec", "fuel": null, - "sulfur": 100 + "sulfur": 60 }, { "group": "melee", "which": null, "toolId": "-2073432256", "caption": null, - "quantity": 5, + "quantity": 1, "quantityTypeId": null, - "time": 74, - "timeString": "1 min 14 sec", + "time": 11.9, + "timeString": "11 sec", "fuel": null, "sulfur": null }, @@ -78,10 +78,10 @@ "which": null, "toolId": "-2073432256", "caption": "Throw", - "quantity": 8, + "quantity": 2, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 51, + "timeString": "51 sec", "fuel": null, "sulfur": null }, @@ -102,10 +102,10 @@ "which": null, "toolId": "-196667575", "caption": null, - "quantity": 11, + "quantity": 2, "quantityTypeId": null, - "time": 144, - "timeString": "2 min 24 sec", + "time": 24, + "timeString": "24 sec", "fuel": null, "sulfur": null }, @@ -114,10 +114,10 @@ "which": null, "toolId": "1488979457", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 21.1, - "timeString": "21 sec", + "time": 3.45, + "timeString": "3 sec", "fuel": null, "sulfur": null }, @@ -128,8 +128,8 @@ "caption": "Workbench Refill", "quantity": 1, "quantityTypeId": null, - "time": 23.1, - "timeString": "23 sec", + "time": 3.45, + "timeString": "3 sec", "fuel": null, "sulfur": null }, @@ -138,10 +138,10 @@ "which": null, "toolId": "-1536855921", "caption": null, - "quantity": 8, + "quantity": 2, "quantityTypeId": null, - "time": 207, - "timeString": "3 min 27 sec", + "time": 34.5, + "timeString": "34 sec", "fuel": null, "sulfur": null }, @@ -150,10 +150,10 @@ "which": null, "toolId": "-1536855921", "caption": "Throw", - "quantity": 4, + "quantity": 1, "quantityTypeId": null, - "time": 150, - "timeString": "2 min 30 sec", + "time": 25.5, + "timeString": "25 sec", "fuel": null, "sulfur": null }, @@ -203,19 +203,19 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", "which": null, "toolId": "1840822026", "caption": null, - "quantity": 4, + "quantity": 2, "quantityTypeId": null, - "time": 8.55, - "timeString": "8 sec", + "time": 6.15, + "timeString": "6 sec", "fuel": null, - "sulfur": 480 + "sulfur": 240 }, { "group": "guns", @@ -263,17 +263,17 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", "which": null, "toolId": "1711033574", "caption": null, - "quantity": 7, + "quantity": 1, "quantityTypeId": null, - "time": 122.9, - "timeString": "2 min 2 sec", + "time": 19.6, + "timeString": "19 sec", "fuel": null, "sulfur": null }, @@ -282,10 +282,10 @@ "which": null, "toolId": "1711033574", "caption": "Throw", - "quantity": 9, + "quantity": 2, "quantityTypeId": null, - "time": 250.5, - "timeString": "4 min 10 sec", + "time": 42, + "timeString": "42 sec", "fuel": null, "sulfur": null }, @@ -294,10 +294,10 @@ "which": null, "toolId": "1814288539", "caption": null, - "quantity": 5, + "quantity": 1, "quantityTypeId": null, - "time": 91.5, - "timeString": "1 min 31 sec", + "time": 14.7, + "timeString": "14 sec", "fuel": null, "sulfur": null }, @@ -306,10 +306,10 @@ "which": null, "toolId": "1814288539", "caption": "Throw", - "quantity": 8, + "quantity": 2, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 51, + "timeString": "51 sec", "fuel": null, "sulfur": null }, @@ -318,10 +318,10 @@ "which": null, "toolId": "1104520648", "caption": null, - "quantity": 6, + "quantity": 1, "quantityTypeId": null, - "time": 38.4, - "timeString": "38 sec", + "time": 5.6, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -330,10 +330,10 @@ "which": null, "toolId": "-1978999529", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 69, - "timeString": "1 min 9 sec", + "time": 12, + "timeString": "12 sec", "fuel": null, "sulfur": null }, @@ -342,10 +342,10 @@ "which": null, "toolId": "-1978999529", "caption": "Throw", - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 100.5, - "timeString": "1 min 40 sec", + "time": 18, + "timeString": "18 sec", "fuel": null, "sulfur": null }, @@ -450,12 +450,12 @@ "which": null, "toolId": "143803535", "caption": null, - "quantity": 12, + "quantity": 3, "quantityTypeId": null, - "time": 16.9, - "timeString": "16 sec", + "time": 6.1, + "timeString": "6 sec", "fuel": null, - "sulfur": 720 + "sulfur": 180 }, { "group": "guns", @@ -491,7 +491,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -510,10 +510,10 @@ "which": null, "toolId": "-1252059217", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 73, - "timeString": "1 min 13 sec", + "time": 12.6, + "timeString": "12 sec", "fuel": null, "sulfur": null }, @@ -522,10 +522,10 @@ "which": null, "toolId": "-1252059217", "caption": "Throw", - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 201, - "timeString": "3 min 21 sec", + "time": 34.5, + "timeString": "34 sec", "fuel": null, "sulfur": null }, @@ -575,17 +575,17 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", "which": null, "toolId": "2040726127", "caption": null, - "quantity": 5, + "quantity": 1, "quantityTypeId": null, - "time": 44.6, - "timeString": "44 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -594,10 +594,10 @@ "which": null, "toolId": "2040726127", "caption": "Throw", - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 10.5, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -647,7 +647,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -695,7 +695,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -743,7 +743,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -791,7 +791,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -875,17 +875,17 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", "which": null, "toolId": "-1966748496", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 69, - "timeString": "1 min 9 sec", + "time": 12, + "timeString": "12 sec", "fuel": null, "sulfur": null }, @@ -894,10 +894,10 @@ "which": null, "toolId": "-1966748496", "caption": "Throw", - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 100.5, - "timeString": "1 min 40 sec", + "time": 18, + "timeString": "18 sec", "fuel": null, "sulfur": null }, @@ -906,10 +906,10 @@ "which": null, "toolId": "-1137865085", "caption": null, - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -918,13 +918,25 @@ "which": null, "toolId": "-1137865085", "caption": "Throw", - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 150, - "timeString": "2 min 30 sec", + "time": 25.5, + "timeString": "25 sec", "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "guns", "which": null, @@ -959,17 +971,17 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", "which": null, "toolId": "1491189398", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 84.75, - "timeString": "1 min 24 sec", + "time": 15, + "timeString": "15 sec", "fuel": null, "sulfur": null }, @@ -978,10 +990,10 @@ "which": null, "toolId": "-1302129395", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 101.5, - "timeString": "1 min 41 sec", + "time": 18, + "timeString": "18 sec", "fuel": null, "sulfur": null }, @@ -992,8 +1004,8 @@ "caption": "Throw", "quantity": 1, "quantityTypeId": null, - "time": 150, - "timeString": "2 min 30 sec", + "time": 25.5, + "timeString": "25 sec", "fuel": null, "sulfur": null }, @@ -1079,7 +1091,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -1115,17 +1127,17 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", "which": null, "toolId": "963906841", "caption": null, - "quantity": 6, + "quantity": 1, "quantityTypeId": null, - "time": 265, - "timeString": "4 min 25 sec", + "time": 44.2, + "timeString": "44 sec", "fuel": null, "sulfur": null }, @@ -1134,10 +1146,10 @@ "which": null, "toolId": "963906841", "caption": "Throw", - "quantity": 8, + "quantity": 2, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 51, + "timeString": "51 sec", "fuel": null, "sulfur": null }, @@ -1148,8 +1160,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 62.5, - "timeString": "1 min 2 sec", + "time": 11.25, + "timeString": "11 sec", "fuel": null, "sulfur": null }, @@ -1160,8 +1172,8 @@ "caption": "Throw", "quantity": 1, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 21, + "timeString": "21 sec", "fuel": null, "sulfur": null }, @@ -1172,8 +1184,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 67, - "timeString": "1 min 7 sec", + "time": 6, + "timeString": "6 sec", "fuel": null, "sulfur": null }, @@ -1184,8 +1196,8 @@ "caption": "Throw", "quantity": 1, "quantityTypeId": null, - "time": 150, - "timeString": "2 min 30 sec", + "time": 25.5, + "timeString": "25 sec", "fuel": null, "sulfur": null }, @@ -1196,8 +1208,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 62.5, - "timeString": "1 min 2 sec", + "time": 11.25, + "timeString": "11 sec", "fuel": null, "sulfur": null }, @@ -1206,10 +1218,10 @@ "which": null, "toolId": "-1780802565", "caption": "Throw", - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 201, - "timeString": "3 min 21 sec", + "time": 34.5, + "timeString": "34 sec", "fuel": null, "sulfur": null }, @@ -1307,7 +1319,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -1367,7 +1379,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -1403,7 +1415,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -1458,10 +1470,10 @@ "which": null, "toolId": "-1583967946", "caption": null, - "quantity": 6, + "quantity": 1, "quantityTypeId": null, - "time": 125.6, - "timeString": "2 min 5 sec", + "time": 20.7, + "timeString": "20 sec", "fuel": null, "sulfur": null }, @@ -1470,10 +1482,10 @@ "which": null, "toolId": "-1583967946", "caption": "Throw", - "quantity": 8, + "quantity": 2, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 51, + "timeString": "51 sec", "fuel": null, "sulfur": null }, @@ -1482,10 +1494,10 @@ "which": null, "toolId": "171931394", "caption": null, - "quantity": 5, + "quantity": 1, "quantityTypeId": null, - "time": 110.2, - "timeString": "1 min 50 sec", + "time": 18, + "timeString": "18 sec", "fuel": null, "sulfur": null }, @@ -1494,10 +1506,10 @@ "which": null, "toolId": "171931394", "caption": "Throw", - "quantity": 8, + "quantity": 2, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 51, + "timeString": "51 sec", "fuel": null, "sulfur": null }, @@ -1506,10 +1518,10 @@ "which": null, "toolId": "1602646136", "caption": null, - "quantity": 6, + "quantity": 1, "quantityTypeId": null, - "time": 92, - "timeString": "1 min 32 sec", + "time": 15, + "timeString": "15 sec", "fuel": null, "sulfur": null }, @@ -1518,10 +1530,10 @@ "which": null, "toolId": "-1469578201", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 55, - "timeString": "55 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -1530,10 +1542,10 @@ "which": null, "toolId": "-1469578201", "caption": "Throw", - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 100.5, - "timeString": "1 min 40 sec", + "time": 18, + "timeString": "18 sec", "fuel": null, "sulfur": null }, @@ -1542,10 +1554,10 @@ "which": null, "toolId": "1326180354", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 51, - "timeString": "51 sec", + "time": 8.75, + "timeString": "8 sec", "fuel": null, "sulfur": null }, @@ -1554,10 +1566,10 @@ "which": null, "toolId": "1326180354", "caption": "Throw", - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 150, - "timeString": "2 min 30 sec", + "time": 25.5, + "timeString": "25 sec", "fuel": null, "sulfur": null }, @@ -1595,18 +1607,18 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", "which": null, "toolId": "795236088", "caption": null, - "quantity": 16, + "quantity": 3, "quantityTypeId": null, - "time": 535, - "timeString": "8 min 55 sec", - "fuel": 16, + "time": 89.1, + "timeString": "1 min 29 sec", + "fuel": 3, "sulfur": null }, { @@ -1614,11 +1626,11 @@ "which": null, "toolId": "795236088", "caption": "Lit", - "quantity": 58, + "quantity": 10, "quantityTypeId": null, - "time": 577, - "timeString": "9 min 37 sec", - "fuel": 58, + "time": 96.1, + "timeString": "1 min 36 sec", + "fuel": 10, "sulfur": null }, { @@ -1626,10 +1638,10 @@ "which": null, "toolId": "1540934679", "caption": null, - "quantity": 5, + "quantity": 1, "quantityTypeId": null, - "time": 124, - "timeString": "2 min 4 sec", + "time": 21, + "timeString": "21 sec", "fuel": null, "sulfur": null } @@ -1680,8 +1692,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -1705,7 +1717,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -1849,7 +1861,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -1909,7 +1921,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -2197,7 +2209,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -2281,7 +2293,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -2353,7 +2365,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -2401,7 +2413,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -2449,7 +2461,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -2497,7 +2509,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -2581,7 +2593,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -2631,6 +2643,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -2677,7 +2713,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -2797,7 +2833,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -2833,7 +2869,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -2888,10 +2924,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 7, + "quantity": 5, "quantityTypeId": null, - "time": 506, - "timeString": "8 min 26 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -3025,7 +3061,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -3085,7 +3121,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -3094,8 +3130,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -3106,8 +3142,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 28, "quantityTypeId": "51984655", - "time": 31.6, - "timeString": "31 sec", + "time": 27.7, + "timeString": "27 sec", "fuel": null, "sulfur": 233 }, @@ -3118,10 +3154,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -3313,7 +3349,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -3398,8 +3434,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -3423,7 +3459,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -3567,7 +3603,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 100 + "sulfur": 33 }, { "group": "explosive", @@ -3627,7 +3663,7 @@ "time": 5.1, "timeString": "5 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "melee", @@ -3915,7 +3951,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 93 + "sulfur": 35 }, { "group": "guns", @@ -3999,7 +4035,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 100 + "sulfur": 33 }, { "group": "melee", @@ -4071,7 +4107,7 @@ "time": 7.8, "timeString": "7 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "guns", @@ -4119,7 +4155,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -4167,7 +4203,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "guns", @@ -4215,7 +4251,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 100 + "sulfur": 33 }, { "group": "guns", @@ -4299,7 +4335,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 80 + "sulfur": 30 }, { "group": "melee", @@ -4349,6 +4385,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 18, + "timeString": "18 sec", + "fuel": 6, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 7, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 23 + }, { "group": "explosive", "which": null, @@ -4395,7 +4455,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 93 + "sulfur": 35 }, { "group": "melee", @@ -4515,7 +4575,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 67 + "sulfur": 25 }, { "group": "guns", @@ -4551,7 +4611,7 @@ "time": 1.225, "timeString": "1 sec", "fuel": null, - "sulfur": 107 + "sulfur": 40 }, { "group": "melee", @@ -4743,7 +4803,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 93 + "sulfur": 35 }, { "group": "guns", @@ -4803,7 +4863,7 @@ "time": 1.05, "timeString": "1 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -4839,7 +4899,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 120 + "sulfur": 45 }, { "group": "guns", @@ -5031,7 +5091,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 93 + "sulfur": 35 }, { "group": "melee", @@ -5116,8 +5176,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -5141,7 +5201,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -5285,7 +5345,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -5345,7 +5405,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -5633,7 +5693,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -5717,7 +5777,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -5789,7 +5849,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -5837,7 +5897,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -5885,7 +5945,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -5933,7 +5993,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -6017,7 +6077,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -6067,6 +6127,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -6113,7 +6197,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -6233,7 +6317,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -6269,7 +6353,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -6324,10 +6408,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 7, + "quantity": 5, "quantityTypeId": null, - "time": 506, - "timeString": "8 min 26 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -6461,7 +6545,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -6521,7 +6605,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -6530,8 +6614,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -6542,8 +6626,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 28, "quantityTypeId": "51984655", - "time": 31.6, - "timeString": "31 sec", + "time": 27.7, + "timeString": "27 sec", "fuel": null, "sulfur": 233 }, @@ -6554,10 +6638,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -6749,7 +6833,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -6834,8 +6918,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -6859,7 +6943,7 @@ "time": 238, "timeString": "3 min 58 sec", "fuel": null, - "sulfur": 800 + "sulfur": 480 }, { "group": "melee", @@ -7003,7 +7087,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "explosive", @@ -7063,7 +7147,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "melee", @@ -7351,7 +7435,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -7435,7 +7519,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "melee", @@ -7507,7 +7591,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -7555,7 +7639,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -7603,7 +7687,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -7651,7 +7735,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -7735,7 +7819,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "melee", @@ -7785,6 +7869,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, { "group": "explosive", "which": null, @@ -7831,7 +7939,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -7951,7 +8059,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -7987,7 +8095,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "melee", @@ -8042,10 +8150,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 8, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 424, + "timeString": "7 min 4 sec", "fuel": null, "sulfur": null }, @@ -8179,7 +8287,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -8239,7 +8347,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -8248,8 +8356,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -8272,10 +8380,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -8467,7 +8575,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -8552,8 +8660,8 @@ "quantityTypeId": null, "time": 41.103210160714, "timeString": "41 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -8577,7 +8685,7 @@ "time": 280, "timeString": "4 min 40 sec", "fuel": null, - "sulfur": 940 + "sulfur": 564 }, { "group": "melee", @@ -8721,7 +8829,7 @@ "time": 182.6452, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 13340 + "sulfur": 4449 }, { "group": "explosive", @@ -8781,7 +8889,7 @@ "time": 1050.4, "timeString": "17 min 30 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "melee", @@ -9069,7 +9177,7 @@ "time": 221.9375, "timeString": "3 min 41 sec", "fuel": null, - "sulfur": 11117 + "sulfur": 4170 }, { "group": "guns", @@ -9153,7 +9261,7 @@ "time": 129.75, "timeString": "2 min 9 sec", "fuel": null, - "sulfur": 11600 + "sulfur": 3869 }, { "group": "melee", @@ -9225,7 +9333,7 @@ "time": 1114.8, "timeString": "18 min 34 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -9273,7 +9381,7 @@ "time": 204.72, "timeString": "3 min 24 sec", "fuel": null, - "sulfur": 16680 + "sulfur": 5563 }, { "group": "guns", @@ -9321,7 +9429,7 @@ "time": 98.34, "timeString": "1 min 38 sec", "fuel": null, - "sulfur": 10260 + "sulfur": 3422 }, { "group": "guns", @@ -9369,7 +9477,7 @@ "time": 218.025, "timeString": "3 min 38 sec", "fuel": null, - "sulfur": 13340 + "sulfur": 4449 }, { "group": "guns", @@ -9453,7 +9561,7 @@ "time": 220.76, "timeString": "3 min 40 sec", "fuel": null, - "sulfur": 9878 + "sulfur": 3705 }, { "group": "melee", @@ -9503,6 +9611,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 509, + "quantityTypeId": null, + "time": 78.5, + "timeString": "1 min 18 sec", + "fuel": 509, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 889, + "quantityTypeId": "-1211166256", + "time": 95.6, + "timeString": "1 min 35 sec", + "fuel": null, + "sulfur": 2960 + }, { "group": "explosive", "which": null, @@ -9549,7 +9681,7 @@ "time": 201.9, "timeString": "3 min 21 sec", "fuel": null, - "sulfur": 11850 + "sulfur": 4445 }, { "group": "melee", @@ -9669,7 +9801,7 @@ "time": 454.5, "timeString": "7 min 34 sec", "fuel": null, - "sulfur": 8091 + "sulfur": 3035 }, { "group": "guns", @@ -9705,7 +9837,7 @@ "time": 550.375, "timeString": "9 min 10 sec", "fuel": null, - "sulfur": 12703 + "sulfur": 4765 }, { "group": "melee", @@ -9760,10 +9892,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -9897,7 +10029,7 @@ "time": 353.2, "timeString": "5 min 53 sec", "fuel": null, - "sulfur": 11117 + "sulfur": 4170 }, { "group": "guns", @@ -9957,7 +10089,7 @@ "time": 365.475, "timeString": "6 min 5 sec", "fuel": null, - "sulfur": 16680 + "sulfur": 5563 }, { "group": "guns", @@ -9966,8 +10098,8 @@ "caption": "Pistol Bullet", "quantity": 1112, "quantityTypeId": "785728077", - "time": 290.5, - "timeString": "4 min 50 sec", + "time": 255.4, + "timeString": "4 min 15 sec", "fuel": null, "sulfur": 2780 }, @@ -9978,8 +10110,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 349, "quantityTypeId": "51984655", - "time": 114.4, - "timeString": "1 min 54 sec", + "time": 102.7, + "timeString": "1 min 42 sec", "fuel": null, "sulfur": 2907 }, @@ -9990,10 +10122,10 @@ "caption": "HV Pistol Ammo", "quantity": 1112, "quantityTypeId": "-1691396643", - "time": 290.5, - "timeString": "4 min 50 sec", + "time": 255.4, + "timeString": "4 min 15 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "guns", @@ -10185,7 +10317,7 @@ "time": 285.72, "timeString": "4 min 45 sec", "fuel": null, - "sulfur": 11850 + "sulfur": 4445 }, { "group": "melee", @@ -10270,8 +10402,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -10295,7 +10427,7 @@ "time": 94, "timeString": "1 min 34 sec", "fuel": null, - "sulfur": 320 + "sulfur": 192 }, { "group": "melee", @@ -10439,7 +10571,7 @@ "time": 34.7957, "timeString": "34 sec", "fuel": null, - "sulfur": 2680 + "sulfur": 894 }, { "group": "explosive", @@ -10499,7 +10631,7 @@ "time": 207.1, "timeString": "3 min 27 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "melee", @@ -10787,7 +10919,7 @@ "time": 43.7625, "timeString": "43 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -10871,7 +11003,7 @@ "time": 20.75, "timeString": "20 sec", "fuel": null, - "sulfur": 2320 + "sulfur": 774 }, { "group": "melee", @@ -10943,7 +11075,7 @@ "time": 222.2, "timeString": "3 min 42 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "guns", @@ -10991,7 +11123,7 @@ "time": 39.32, "timeString": "39 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -11039,7 +11171,7 @@ "time": 19.62, "timeString": "19 sec", "fuel": null, - "sulfur": 2060 + "sulfur": 687 }, { "group": "guns", @@ -11087,7 +11219,7 @@ "time": 41.725, "timeString": "41 sec", "fuel": null, - "sulfur": 2680 + "sulfur": 894 }, { "group": "guns", @@ -11171,7 +11303,7 @@ "time": 42.36, "timeString": "42 sec", "fuel": null, - "sulfur": 1986 + "sulfur": 745 }, { "group": "melee", @@ -11221,6 +11353,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 178, + "quantityTypeId": "-1211166256", + "time": 17.7, + "timeString": "17 sec", + "fuel": null, + "sulfur": 593 + }, { "group": "explosive", "which": null, @@ -11267,7 +11423,7 @@ "time": 37.2, "timeString": "37 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "melee", @@ -11387,7 +11543,7 @@ "time": 90.15, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 1626 + "sulfur": 610 }, { "group": "guns", @@ -11423,7 +11579,7 @@ "time": 107.425, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 2546 + "sulfur": 955 }, { "group": "melee", @@ -11478,10 +11634,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -11615,7 +11771,7 @@ "time": 68.9, "timeString": "1 min 8 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -11675,7 +11831,7 @@ "time": 71.3, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -11684,8 +11840,8 @@ "caption": "Pistol Bullet", "quantity": 223, "quantityTypeId": "785728077", - "time": 57.3, - "timeString": "57 sec", + "time": 49.5, + "timeString": "49 sec", "fuel": null, "sulfur": 558 }, @@ -11708,10 +11864,10 @@ "caption": "HV Pistol Ammo", "quantity": 223, "quantityTypeId": "-1691396643", - "time": 57.3, - "timeString": "57 sec", + "time": 49.5, + "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "guns", @@ -11903,7 +12059,7 @@ "time": 53.97, "timeString": "53 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "melee", @@ -12001,7 +12157,7 @@ "time": 40, "timeString": "40 sec", "fuel": null, - "sulfur": 140 + "sulfur": 84 }, { "group": "melee", @@ -12121,7 +12277,7 @@ "time": 3.8657, "timeString": "3 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "explosive", @@ -12181,7 +12337,7 @@ "time": 43.8, "timeString": "43 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "melee", @@ -12385,7 +12541,7 @@ "time": 9.7375, "timeString": "9 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -12469,7 +12625,7 @@ "time": 3.25, "timeString": "3 sec", "fuel": null, - "sulfur": 540 + "sulfur": 180 }, { "group": "melee", @@ -12541,7 +12697,7 @@ "time": 48, "timeString": "48 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "guns", @@ -12589,7 +12745,7 @@ "time": 8.32, "timeString": "8 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -12637,7 +12793,7 @@ "time": 2.76, "timeString": "2 sec", "fuel": null, - "sulfur": 480 + "sulfur": 160 }, { "group": "guns", @@ -12685,7 +12841,7 @@ "time": 8.15, "timeString": "8 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "guns", @@ -12769,7 +12925,7 @@ "time": 9.43, "timeString": "9 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "melee", @@ -12795,6 +12951,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "-1211166256", + "time": 3.9, + "timeString": "3 sec", + "fuel": null, + "sulfur": 133 + }, { "group": "guns", "which": null, @@ -12829,7 +12997,7 @@ "time": 7.8, "timeString": "7 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -12937,7 +13105,7 @@ "time": 18.45, "timeString": "18 sec", "fuel": null, - "sulfur": 373 + "sulfur": 140 }, { "group": "guns", @@ -12973,7 +13141,7 @@ "time": 23.475, "timeString": "23 sec", "fuel": null, - "sulfur": 573 + "sulfur": 215 }, { "group": "melee", @@ -13117,7 +13285,7 @@ "time": 13.8, "timeString": "13 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -13177,7 +13345,7 @@ "time": 14.925, "timeString": "14 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -13186,8 +13354,8 @@ "caption": "Pistol Bullet", "quantity": 50, "quantityTypeId": "785728077", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, "sulfur": 125 }, @@ -13198,8 +13366,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 50, "quantityTypeId": "51984655", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, "sulfur": 417 }, @@ -13210,10 +13378,10 @@ "caption": "HV Pistol Ammo", "quantity": 50, "quantityTypeId": "-1691396643", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -13405,7 +13573,7 @@ "time": 8.94, "timeString": "8 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -13462,12 +13630,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 340, + "quantity": 170, "quantityTypeId": null, - "time": 2034, - "timeString": "33 min 54 sec", - "fuel": 86020, - "sulfur": 207400 + "time": 1014, + "timeString": "16 min 54 sec", + "fuel": 12750, + "sulfur": 51000 }, { "group": "explosive", @@ -13491,7 +13659,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -13635,7 +13803,7 @@ "time": 19.7306, "timeString": "19 sec", "fuel": null, - "sulfur": 1700 + "sulfur": 567 }, { "group": "explosive", @@ -13695,7 +13863,7 @@ "time": 133, "timeString": "2 min 13 sec", "fuel": null, - "sulfur": 1080 + "sulfur": 360 }, { "group": "melee", @@ -14091,7 +14259,7 @@ "time": 25.8625, "timeString": "25 sec", "fuel": null, - "sulfur": 1426 + "sulfur": 535 }, { "group": "guns", @@ -14175,7 +14343,7 @@ "time": 15.5, "timeString": "15 sec", "fuel": null, - "sulfur": 1480 + "sulfur": 494 }, { "group": "melee", @@ -14247,7 +14415,7 @@ "time": 141.8, "timeString": "2 min 21 sec", "fuel": null, - "sulfur": 1080 + "sulfur": 360 }, { "group": "guns", @@ -14295,7 +14463,7 @@ "time": 24.36, "timeString": "24 sec", "fuel": null, - "sulfur": 2140 + "sulfur": 714 }, { "group": "guns", @@ -14343,7 +14511,7 @@ "time": 7.8, "timeString": "7 sec", "fuel": null, - "sulfur": 1320 + "sulfur": 440 }, { "group": "guns", @@ -14391,7 +14559,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 1700 + "sulfur": 567 }, { "group": "guns", @@ -14475,7 +14643,7 @@ "time": 27.54, "timeString": "27 sec", "fuel": null, - "sulfur": 1266 + "sulfur": 475 }, { "group": "melee", @@ -14525,6 +14693,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 2125, + "quantityTypeId": null, + "time": 260, + "timeString": "4 min 20 sec", + "fuel": 2125, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 114, + "quantityTypeId": "-1211166256", + "time": 11.3, + "timeString": "11 sec", + "fuel": null, + "sulfur": 380 + }, { "group": "explosive", "which": null, @@ -14571,7 +14763,7 @@ "time": 23, "timeString": "23 sec", "fuel": null, - "sulfur": 1520 + "sulfur": 570 }, { "group": "guns", @@ -14715,7 +14907,7 @@ "time": 54.75, "timeString": "54 sec", "fuel": null, - "sulfur": 1040 + "sulfur": 390 }, { "group": "guns", @@ -14751,7 +14943,7 @@ "time": 69.55, "timeString": "1 min 9 sec", "fuel": null, - "sulfur": 1626 + "sulfur": 610 }, { "group": "melee", @@ -14808,8 +15000,8 @@ "caption": null, "quantity": 4, "quantityTypeId": null, - "time": 287, - "timeString": "4 min 47 sec", + "time": 216, + "timeString": "3 min 36 sec", "fuel": null, "sulfur": null }, @@ -14943,7 +15135,7 @@ "time": 43.4, "timeString": "43 sec", "fuel": null, - "sulfur": 1426 + "sulfur": 535 }, { "group": "guns", @@ -15003,7 +15195,7 @@ "time": 43.9, "timeString": "43 sec", "fuel": null, - "sulfur": 2140 + "sulfur": 714 }, { "group": "guns", @@ -15012,8 +15204,8 @@ "caption": "Pistol Bullet", "quantity": 142, "quantityTypeId": "785728077", - "time": 33.6, - "timeString": "33 sec", + "time": 29.7, + "timeString": "29 sec", "fuel": null, "sulfur": 355 }, @@ -15024,8 +15216,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 134, "quantityTypeId": "51984655", - "time": 32.8, - "timeString": "32 sec", + "time": 28.9, + "timeString": "28 sec", "fuel": null, "sulfur": 1116 }, @@ -15036,10 +15228,10 @@ "caption": "HV Pistol Ammo", "quantity": 142, "quantityTypeId": "-1691396643", - "time": 33.6, - "timeString": "33 sec", + "time": 29.7, + "timeString": "29 sec", "fuel": null, - "sulfur": 1893 + "sulfur": 710 }, { "group": "guns", @@ -15255,7 +15447,7 @@ "time": 34.04, "timeString": "34 sec", "fuel": null, - "sulfur": 1520 + "sulfur": 570 }, { "group": "melee", @@ -15352,8 +15544,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -15377,7 +15569,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -15521,7 +15713,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -15581,7 +15773,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -15869,7 +16061,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -15953,7 +16145,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -16025,7 +16217,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -16073,7 +16265,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -16121,7 +16313,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -16169,7 +16361,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -16253,7 +16445,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -16303,6 +16495,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -16349,7 +16565,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -16469,7 +16685,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -16505,7 +16721,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -16562,8 +16778,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -16697,7 +16913,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -16757,7 +16973,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -16766,8 +16982,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -16790,10 +17006,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -16985,7 +17201,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -17066,12 +17282,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 16, + "quantity": 8, "quantityTypeId": null, - "time": 90, - "timeString": "1 min 30 sec", - "fuel": 4048, - "sulfur": 9760 + "time": 42, + "timeString": "42 sec", + "fuel": 600, + "sulfur": 2400 }, { "group": "explosive", @@ -17095,7 +17311,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -17239,7 +17455,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -17299,7 +17515,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -17587,7 +17803,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -17671,7 +17887,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -17743,7 +17959,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -17791,7 +18007,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -17839,7 +18055,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -17887,7 +18103,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -17971,7 +18187,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -18021,6 +18237,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 100, + "quantityTypeId": null, + "time": 9.9, + "timeString": "9 sec", + "fuel": 100, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -18067,7 +18307,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -18187,7 +18427,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -18223,7 +18463,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -18280,8 +18520,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -18415,7 +18655,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -18475,7 +18715,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -18511,7 +18751,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -18703,7 +18943,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -18801,7 +19041,7 @@ "time": 1498, "timeString": "24 min 58 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 3000 }, { "group": "melee", @@ -18945,7 +19185,7 @@ "time": 68879.2778, "timeString": "19 hours 7 min 59 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "explosive", @@ -19005,7 +19245,7 @@ "time": 394527.9, "timeString": "109 hours 35 min 27 sec", "fuel": null, - "sulfur": 3125000 + "sulfur": 1042188 }, { "group": "melee", @@ -19233,7 +19473,7 @@ "time": 83549.925, "timeString": "23 hours 12 min 29 sec", "fuel": null, - "sulfur": 4165625 + "sulfur": 1562500 }, { "group": "guns", @@ -19317,7 +19557,7 @@ "time": 50270.5, "timeString": "13 hours 57 min 50 sec", "fuel": null, - "sulfur": 4347840 + "sulfur": 1450005 }, { "group": "melee", @@ -19389,7 +19629,7 @@ "time": 418747, "timeString": "116 hours 19 min 7 sec", "fuel": null, - "sulfur": 3125000 + "sulfur": 1042188 }, { "group": "guns", @@ -19437,7 +19677,7 @@ "time": 77913.96, "timeString": "21 hours 38 min 33 sec", "fuel": null, - "sulfur": 6250000 + "sulfur": 2084375 }, { "group": "guns", @@ -19485,7 +19725,7 @@ "time": 37268.58, "timeString": "10 hours 21 min 8 sec", "fuel": null, - "sulfur": 3846160 + "sulfur": 1282694 }, { "group": "guns", @@ -19533,7 +19773,7 @@ "time": 82184.25, "timeString": "22 hours 49 min 44 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -19617,7 +19857,7 @@ "time": 83146.87, "timeString": "23 hours 5 min 46 sec", "fuel": null, - "sulfur": 3702781 + "sulfur": 1388890 }, { "group": "melee", @@ -19667,6 +19907,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 333334, + "quantityTypeId": "-1211166256", + "time": 37110.7, + "timeString": "10 hours 18 min 30 sec", + "fuel": null, + "sulfur": 1110002 + }, { "group": "guns", "which": null, @@ -19701,7 +19953,7 @@ "time": 76666.2, "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "melee", @@ -19821,7 +20073,7 @@ "time": 170451.6, "timeString": "47 hours 20 min 51 sec", "fuel": null, - "sulfur": 3029549 + "sulfur": 1136365 }, { "group": "guns", @@ -19857,7 +20109,7 @@ "time": 206470.3, "timeString": "57 hours 21 min 10 sec", "fuel": null, - "sulfur": 4760716 + "sulfur": 1785715 }, { "group": "melee", @@ -19912,10 +20164,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 37, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": 2120, + "timeString": "35 min 20 sec", "fuel": null, "sulfur": null }, @@ -20049,7 +20301,7 @@ "time": 132809.6, "timeString": "36 hours 53 min 29 sec", "fuel": null, - "sulfur": 4165625 + "sulfur": 1562500 }, { "group": "guns", @@ -20109,7 +20361,7 @@ "time": 137205.8, "timeString": "38 hours 6 min 45 sec", "fuel": null, - "sulfur": 6250000 + "sulfur": 2084375 }, { "group": "guns", @@ -20118,8 +20370,8 @@ "caption": "Pistol Bullet", "quantity": 416667, "quantityTypeId": "785728077", - "time": 109374.5, - "timeString": "30 hours 22 min 54 sec", + "time": 95829.8, + "timeString": "26 hours 37 min 9 sec", "fuel": null, "sulfur": 1041668 }, @@ -20130,8 +20382,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 416667, "quantityTypeId": "51984655", - "time": 109374.5, - "timeString": "30 hours 22 min 54 sec", + "time": 95829.8, + "timeString": "26 hours 37 min 9 sec", "fuel": null, "sulfur": 3470836 }, @@ -20142,10 +20394,10 @@ "caption": "HV Pistol Ammo", "quantity": 416667, "quantityTypeId": "-1691396643", - "time": 109374.5, - "timeString": "30 hours 22 min 54 sec", + "time": 95829.8, + "timeString": "26 hours 37 min 9 sec", "fuel": null, - "sulfur": 5554171 + "sulfur": 2083335 }, { "group": "guns", @@ -20337,7 +20589,7 @@ "time": 107830.71, "timeString": "29 hours 57 min 10 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "melee", @@ -20422,8 +20674,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -20447,7 +20699,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -20591,7 +20843,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -20651,7 +20903,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -20939,7 +21191,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -21023,7 +21275,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -21095,7 +21347,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -21143,7 +21395,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -21191,7 +21443,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -21239,7 +21491,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -21323,7 +21575,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -21373,6 +21625,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -21419,7 +21695,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -21539,7 +21815,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -21575,7 +21851,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -21632,8 +21908,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -21767,7 +22043,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -21827,7 +22103,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -21848,8 +22124,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -21863,7 +22139,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -22055,7 +22331,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -22140,8 +22416,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -22165,7 +22441,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -22309,7 +22585,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -22369,7 +22645,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -22765,7 +23041,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -22849,7 +23125,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -22921,7 +23197,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -22969,7 +23245,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -23017,7 +23293,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -23065,7 +23341,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -23149,7 +23425,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -23199,6 +23475,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -23245,7 +23545,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -23389,7 +23689,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -23425,7 +23725,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -23482,8 +23782,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 3, + "timeString": "3 sec", "fuel": null, "sulfur": null }, @@ -23617,7 +23917,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -23677,7 +23977,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -23713,7 +24013,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -23929,7 +24229,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -24022,12 +24322,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 220, + "quantity": 110, "quantityTypeId": null, - "time": 1314, - "timeString": "21 min 54 sec", - "fuel": 55660, - "sulfur": 134200 + "time": 654, + "timeString": "10 min 54 sec", + "fuel": 8250, + "sulfur": 33000 }, { "group": "explosive", @@ -24051,7 +24351,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -24195,7 +24495,7 @@ "time": 11.4649, "timeString": "11 sec", "fuel": null, - "sulfur": 1100 + "sulfur": 367 }, { "group": "explosive", @@ -24255,7 +24555,7 @@ "time": 84.2, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -24651,7 +24951,7 @@ "time": 16.0125, "timeString": "16 sec", "fuel": null, - "sulfur": 920 + "sulfur": 345 }, { "group": "guns", @@ -24735,7 +25035,7 @@ "time": 5.875, "timeString": "5 sec", "fuel": null, - "sulfur": 960 + "sulfur": 320 }, { "group": "melee", @@ -24807,7 +25107,7 @@ "time": 90.8, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "guns", @@ -24855,7 +25155,7 @@ "time": 15.92, "timeString": "15 sec", "fuel": null, - "sulfur": 1380 + "sulfur": 460 }, { "group": "guns", @@ -24903,7 +25203,7 @@ "time": 5.04, "timeString": "5 sec", "fuel": null, - "sulfur": 860 + "sulfur": 287 }, { "group": "guns", @@ -24951,7 +25251,7 @@ "time": 15.6, "timeString": "15 sec", "fuel": null, - "sulfur": 1100 + "sulfur": 367 }, { "group": "guns", @@ -25035,7 +25335,7 @@ "time": 18.11, "timeString": "18 sec", "fuel": null, - "sulfur": 826 + "sulfur": 310 }, { "group": "melee", @@ -25085,6 +25385,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1375, + "quantityTypeId": null, + "time": 168, + "timeString": "2 min 48 sec", + "fuel": 1375, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 74, + "quantityTypeId": "-1211166256", + "time": 7.3, + "timeString": "7 sec", + "fuel": null, + "sulfur": 246 + }, { "group": "explosive", "which": null, @@ -25131,7 +25455,7 @@ "time": 15.1, "timeString": "15 sec", "fuel": null, - "sulfur": 986 + "sulfur": 370 }, { "group": "guns", @@ -25275,7 +25599,7 @@ "time": 36.15, "timeString": "36 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -25311,7 +25635,7 @@ "time": 42.675, "timeString": "42 sec", "fuel": null, - "sulfur": 1053 + "sulfur": 395 }, { "group": "melee", @@ -25368,8 +25692,8 @@ "caption": null, "quantity": 3, "quantityTypeId": null, - "time": 186, - "timeString": "3 min 6 sec", + "time": 140, + "timeString": "2 min 20 sec", "fuel": null, "sulfur": null }, @@ -25503,7 +25827,7 @@ "time": 26.7, "timeString": "26 sec", "fuel": null, - "sulfur": 920 + "sulfur": 345 }, { "group": "guns", @@ -25563,7 +25887,7 @@ "time": 28.8, "timeString": "28 sec", "fuel": null, - "sulfur": 1380 + "sulfur": 460 }, { "group": "guns", @@ -25584,8 +25908,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 87, "quantityTypeId": "51984655", - "time": 20.3, - "timeString": "20 sec", + "time": 16.4, + "timeString": "16 sec", "fuel": null, "sulfur": 725 }, @@ -25599,7 +25923,7 @@ "time": 20.8, "timeString": "20 sec", "fuel": null, - "sulfur": 1226 + "sulfur": 460 }, { "group": "guns", @@ -25815,7 +26139,7 @@ "time": 21.1, "timeString": "21 sec", "fuel": null, - "sulfur": 986 + "sulfur": 370 }, { "group": "melee", @@ -25912,8 +26236,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -25937,7 +26261,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -26081,7 +26405,7 @@ "time": 3.8657, "timeString": "3 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "explosive", @@ -26141,7 +26465,7 @@ "time": 43.8, "timeString": "43 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "melee", @@ -26429,7 +26753,7 @@ "time": 9.7375, "timeString": "9 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -26513,7 +26837,7 @@ "time": 3.25, "timeString": "3 sec", "fuel": null, - "sulfur": 540 + "sulfur": 180 }, { "group": "melee", @@ -26585,7 +26909,7 @@ "time": 48, "timeString": "48 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "guns", @@ -26633,7 +26957,7 @@ "time": 8.32, "timeString": "8 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -26681,7 +27005,7 @@ "time": 2.76, "timeString": "2 sec", "fuel": null, - "sulfur": 480 + "sulfur": 160 }, { "group": "guns", @@ -26729,7 +27053,7 @@ "time": 8.15, "timeString": "8 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "guns", @@ -26813,7 +27137,7 @@ "time": 9.43, "timeString": "9 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "melee", @@ -26863,6 +27187,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "-1211166256", + "time": 3.9, + "timeString": "3 sec", + "fuel": null, + "sulfur": 133 + }, { "group": "explosive", "which": null, @@ -26909,7 +27257,7 @@ "time": 7.8, "timeString": "7 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -27029,7 +27377,7 @@ "time": 18.45, "timeString": "18 sec", "fuel": null, - "sulfur": 373 + "sulfur": 140 }, { "group": "guns", @@ -27065,7 +27413,7 @@ "time": 23.475, "timeString": "23 sec", "fuel": null, - "sulfur": 573 + "sulfur": 215 }, { "group": "melee", @@ -27122,8 +27470,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 10, - "timeString": "10 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -27257,7 +27605,7 @@ "time": 13.8, "timeString": "13 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -27317,7 +27665,7 @@ "time": 14.925, "timeString": "14 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -27326,8 +27674,8 @@ "caption": "Pistol Bullet", "quantity": 50, "quantityTypeId": "785728077", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, "sulfur": 125 }, @@ -27350,10 +27698,10 @@ "caption": "HV Pistol Ammo", "quantity": 50, "quantityTypeId": "-1691396643", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -27545,7 +27893,7 @@ "time": 8.94, "timeString": "8 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -27630,8 +27978,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -27655,7 +28003,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -27799,7 +28147,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -27859,7 +28207,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -28147,7 +28495,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -28231,7 +28579,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -28303,7 +28651,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -28351,7 +28699,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -28399,7 +28747,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -28447,7 +28795,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -28531,7 +28879,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -28581,6 +28929,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "explosive", "which": null, @@ -28627,7 +28999,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -28747,7 +29119,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -28783,7 +29155,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -28840,8 +29212,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 2, + "timeString": "2 sec", "fuel": null, "sulfur": null }, @@ -28975,7 +29347,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -29035,7 +29407,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -29071,7 +29443,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -29263,7 +29635,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -29361,7 +29733,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -29505,7 +29877,7 @@ "time": 12.1314, "timeString": "12 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "explosive", @@ -29565,7 +29937,7 @@ "time": 92.6, "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "melee", @@ -29949,7 +30321,7 @@ "time": 19.475, "timeString": "19 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -30033,7 +30405,7 @@ "time": 6.5, "timeString": "6 sec", "fuel": null, - "sulfur": 1060 + "sulfur": 354 }, { "group": "melee", @@ -30105,7 +30477,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -30153,7 +30525,7 @@ "time": 16.64, "timeString": "16 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -30201,7 +30573,7 @@ "time": 5.52, "timeString": "5 sec", "fuel": null, - "sulfur": 940 + "sulfur": 313 }, { "group": "guns", @@ -30249,7 +30621,7 @@ "time": 16.475, "timeString": "16 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "guns", @@ -30333,7 +30705,7 @@ "time": 18.86, "timeString": "18 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -30383,6 +30755,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 80, + "quantityTypeId": "-1211166256", + "time": 7.9, + "timeString": "7 sec", + "fuel": null, + "sulfur": 266 + }, { "group": "guns", "which": null, @@ -30417,7 +30801,7 @@ "time": 15.7, "timeString": "15 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "guns", @@ -30561,7 +30945,7 @@ "time": 40.5, "timeString": "40 sec", "fuel": null, - "sulfur": 733 + "sulfur": 275 }, { "group": "guns", @@ -30597,7 +30981,7 @@ "time": 47.125, "timeString": "47 sec", "fuel": null, - "sulfur": 1146 + "sulfur": 430 }, { "group": "melee", @@ -30652,10 +31036,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 101, - "timeString": "1 min 41 sec", + "time": 50, + "timeString": "50 sec", "fuel": null, "sulfur": null }, @@ -30789,7 +31173,7 @@ "time": 30.35, "timeString": "30 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -30849,7 +31233,7 @@ "time": 29.85, "timeString": "29 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -30858,8 +31242,8 @@ "caption": "Pistol Bullet", "quantity": 100, "quantityTypeId": "785728077", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 250 }, @@ -30870,8 +31254,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 100, "quantityTypeId": "51984655", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 833 }, @@ -30882,10 +31266,10 @@ "caption": "HV Pistol Ammo", "quantity": 100, "quantityTypeId": "-1691396643", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -31101,7 +31485,7 @@ "time": 21.88, "timeString": "21 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -31295,7 +31679,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -31343,7 +31727,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -31607,7 +31991,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -31691,7 +32075,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -31763,7 +32147,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -31811,7 +32195,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -31859,7 +32243,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -31907,7 +32291,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -31991,7 +32375,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -32041,6 +32425,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "guns", "which": null, @@ -32075,7 +32471,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -32195,7 +32591,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -32231,7 +32627,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -32288,8 +32684,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 34, - "timeString": "34 sec", + "time": 25, + "timeString": "25 sec", "fuel": null, "sulfur": null }, @@ -32423,7 +32819,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -32483,7 +32879,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -32492,8 +32888,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -32504,8 +32900,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 105, "quantityTypeId": "51984655", - "time": 26, - "timeString": "26 sec", + "time": 22.1, + "timeString": "22 sec", "fuel": null, "sulfur": 875 }, @@ -32516,10 +32912,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -32711,7 +33107,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -32796,8 +33192,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -32821,7 +33217,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -32965,7 +33361,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -33025,7 +33421,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -33313,7 +33709,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -33397,7 +33793,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -33469,7 +33865,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -33517,7 +33913,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -33565,7 +33961,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -33613,7 +34009,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -33697,7 +34093,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -33747,6 +34143,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -33793,7 +34213,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -33913,7 +34333,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -33949,7 +34369,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -34006,8 +34426,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -34141,7 +34561,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -34201,7 +34621,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -34222,8 +34642,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -34237,7 +34657,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -34429,7 +34849,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -34527,7 +34947,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -34647,7 +35067,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -34707,7 +35127,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -34911,7 +35331,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -34995,7 +35415,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -35067,7 +35487,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -35115,7 +35535,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -35163,7 +35583,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -35211,7 +35631,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -35295,7 +35715,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -35321,6 +35741,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "guns", "which": null, @@ -35355,7 +35787,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -35463,7 +35895,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -35499,7 +35931,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -35643,7 +36075,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -35703,7 +36135,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -35739,7 +36171,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -35931,7 +36363,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -35992,8 +36424,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -36017,7 +36449,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -36161,7 +36593,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -36221,7 +36653,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -36509,7 +36941,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -36593,7 +37025,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -36665,7 +37097,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -36713,7 +37145,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -36761,7 +37193,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -36809,7 +37241,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -36893,7 +37325,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -36943,6 +37375,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -36989,7 +37445,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -37109,7 +37565,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -37145,7 +37601,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -37202,8 +37658,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -37337,7 +37793,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -37397,7 +37853,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -37406,8 +37862,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -37430,10 +37886,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -37625,7 +38081,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -37710,8 +38166,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -37735,7 +38191,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -37879,7 +38335,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -37939,7 +38395,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -38227,7 +38683,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -38311,7 +38767,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -38383,7 +38839,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -38431,7 +38887,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -38479,7 +38935,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -38527,7 +38983,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -38611,7 +39067,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -38661,6 +39117,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -38707,7 +39187,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -38827,7 +39307,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -38863,7 +39343,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -38920,8 +39400,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -39055,7 +39535,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -39115,7 +39595,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -39136,8 +39616,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -39151,7 +39631,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -39343,7 +39823,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -39441,7 +39921,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -39585,7 +40065,7 @@ "time": 12.1314, "timeString": "12 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "explosive", @@ -39645,7 +40125,7 @@ "time": 92.6, "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "melee", @@ -40029,7 +40509,7 @@ "time": 19.475, "timeString": "19 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -40113,7 +40593,7 @@ "time": 6.5, "timeString": "6 sec", "fuel": null, - "sulfur": 1060 + "sulfur": 354 }, { "group": "melee", @@ -40185,7 +40665,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -40233,7 +40713,7 @@ "time": 16.64, "timeString": "16 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -40281,7 +40761,7 @@ "time": 5.52, "timeString": "5 sec", "fuel": null, - "sulfur": 940 + "sulfur": 313 }, { "group": "guns", @@ -40329,7 +40809,7 @@ "time": 16.475, "timeString": "16 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "guns", @@ -40413,7 +40893,7 @@ "time": 18.86, "timeString": "18 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -40463,6 +40943,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 80, + "quantityTypeId": "-1211166256", + "time": 7.9, + "timeString": "7 sec", + "fuel": null, + "sulfur": 266 + }, { "group": "guns", "which": null, @@ -40497,7 +40989,7 @@ "time": 15.7, "timeString": "15 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "guns", @@ -40641,7 +41133,7 @@ "time": 40.5, "timeString": "40 sec", "fuel": null, - "sulfur": 733 + "sulfur": 275 }, { "group": "guns", @@ -40677,7 +41169,7 @@ "time": 47.125, "timeString": "47 sec", "fuel": null, - "sulfur": 1146 + "sulfur": 430 }, { "group": "melee", @@ -40732,10 +41224,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 101, - "timeString": "1 min 41 sec", + "time": 50, + "timeString": "50 sec", "fuel": null, "sulfur": null }, @@ -40869,7 +41361,7 @@ "time": 30.35, "timeString": "30 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -40929,7 +41421,7 @@ "time": 29.85, "timeString": "29 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -40938,8 +41430,8 @@ "caption": "Pistol Bullet", "quantity": 100, "quantityTypeId": "785728077", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 250 }, @@ -40950,8 +41442,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 100, "quantityTypeId": "51984655", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 833 }, @@ -40962,10 +41454,10 @@ "caption": "HV Pistol Ammo", "quantity": 100, "quantityTypeId": "-1691396643", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -41181,7 +41673,7 @@ "time": 21.88, "timeString": "21 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -41278,8 +41770,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -41303,7 +41795,7 @@ "time": 100, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 340 + "sulfur": 204 }, { "group": "melee", @@ -41447,7 +41939,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -41507,7 +41999,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -41795,7 +42287,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -41879,7 +42371,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -41951,7 +42443,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -41999,7 +42491,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -42047,7 +42539,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -42095,7 +42587,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -42179,7 +42671,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -42229,6 +42721,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -42275,7 +42791,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -42395,7 +42911,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -42431,7 +42947,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -42486,10 +43002,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -42623,7 +43139,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -42683,7 +43199,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -42692,8 +43208,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -42704,8 +43220,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 127, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 53.2, + "timeString": "53 sec", "fuel": null, "sulfur": 1058 }, @@ -42716,10 +43232,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -42911,7 +43427,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -42996,8 +43512,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -43021,7 +43537,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -43165,7 +43681,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -43225,7 +43741,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -43513,7 +44029,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -43597,7 +44113,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -43669,7 +44185,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -43717,7 +44233,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -43765,7 +44281,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -43813,7 +44329,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -43897,7 +44413,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -43947,6 +44463,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "explosive", "which": null, @@ -43993,7 +44533,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -44113,7 +44653,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -44149,7 +44689,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -44206,8 +44746,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 2, + "timeString": "2 sec", "fuel": null, "sulfur": null }, @@ -44341,7 +44881,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -44401,7 +44941,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -44437,7 +44977,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -44629,7 +45169,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -44714,8 +45254,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -44739,7 +45279,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -44883,7 +45423,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -44943,7 +45483,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -45231,7 +45771,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -45315,7 +45855,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -45387,7 +45927,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -45435,7 +45975,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -45483,7 +46023,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -45531,7 +46071,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -45615,7 +46155,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -45665,6 +46205,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -45711,7 +46275,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -45831,7 +46395,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -45867,7 +46431,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -45924,8 +46488,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 4, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -46059,7 +46623,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -46119,7 +46683,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -46155,7 +46719,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -46347,7 +46911,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -46432,8 +46996,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -46457,7 +47021,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -46601,7 +47165,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -46661,7 +47225,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -46949,7 +47513,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -47033,7 +47597,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -47105,7 +47669,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -47153,7 +47717,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -47201,7 +47765,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -47249,7 +47813,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -47333,7 +47897,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -47383,6 +47947,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -47429,7 +48017,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -47549,7 +48137,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -47585,7 +48173,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -47642,8 +48230,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -47777,7 +48365,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -47837,7 +48425,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -47873,7 +48461,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -48065,7 +48653,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -48150,8 +48738,8 @@ "quantityTypeId": null, "time": 4.9323852192856, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -48175,7 +48763,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -48319,7 +48907,7 @@ "time": 12.1314, "timeString": "12 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "explosive", @@ -48379,7 +48967,7 @@ "time": 92.6, "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "melee", @@ -48667,7 +49255,7 @@ "time": 19.475, "timeString": "19 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -48751,7 +49339,7 @@ "time": 6.5, "timeString": "6 sec", "fuel": null, - "sulfur": 1060 + "sulfur": 354 }, { "group": "melee", @@ -48823,7 +49411,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -48871,7 +49459,7 @@ "time": 16.64, "timeString": "16 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -48919,7 +49507,7 @@ "time": 5.52, "timeString": "5 sec", "fuel": null, - "sulfur": 940 + "sulfur": 313 }, { "group": "guns", @@ -48967,7 +49555,7 @@ "time": 16.475, "timeString": "16 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "guns", @@ -49051,7 +49639,7 @@ "time": 18.86, "timeString": "18 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -49101,6 +49689,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 62, + "quantityTypeId": null, + "time": 23.6, + "timeString": "23 sec", + "fuel": 62, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 80, + "quantityTypeId": "-1211166256", + "time": 7.9, + "timeString": "7 sec", + "fuel": null, + "sulfur": 266 + }, { "group": "explosive", "which": null, @@ -49147,7 +49759,7 @@ "time": 15.7, "timeString": "15 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -49267,7 +49879,7 @@ "time": 40.5, "timeString": "40 sec", "fuel": null, - "sulfur": 733 + "sulfur": 275 }, { "group": "guns", @@ -49303,7 +49915,7 @@ "time": 47.125, "timeString": "47 sec", "fuel": null, - "sulfur": 1146 + "sulfur": 430 }, { "group": "melee", @@ -49360,8 +49972,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 20, - "timeString": "20 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -49495,7 +50107,7 @@ "time": 30.35, "timeString": "30 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -49555,7 +50167,7 @@ "time": 29.85, "timeString": "29 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -49564,8 +50176,8 @@ "caption": "Pistol Bullet", "quantity": 100, "quantityTypeId": "785728077", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 250 }, @@ -49588,10 +50200,10 @@ "caption": "HV Pistol Ammo", "quantity": 100, "quantityTypeId": "-1691396643", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -49783,7 +50395,7 @@ "time": 21.88, "timeString": "21 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -49868,8 +50480,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -49893,7 +50505,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -50037,7 +50649,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -50097,7 +50709,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -50385,7 +50997,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -50469,7 +51081,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -50541,7 +51153,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -50589,7 +51201,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -50637,7 +51249,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -50685,7 +51297,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -50769,7 +51381,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -50819,6 +51431,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -50865,7 +51501,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -50985,7 +51621,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -51021,7 +51657,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -51078,8 +51714,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -51213,7 +51849,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -51273,7 +51909,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -51294,8 +51930,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -51309,7 +51945,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -51501,7 +52137,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -51586,8 +52222,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -51611,7 +52247,7 @@ "time": 118, "timeString": "1 min 58 sec", "fuel": null, - "sulfur": 400 + "sulfur": 240 }, { "group": "melee", @@ -51755,7 +52391,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -51815,7 +52451,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -52103,7 +52739,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -52187,7 +52823,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -52259,7 +52895,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -52307,7 +52943,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -52355,7 +52991,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -52403,7 +53039,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -52487,7 +53123,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -52537,6 +53173,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -52583,7 +53243,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -52703,7 +53363,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -52739,7 +53399,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -52794,10 +53454,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -52931,7 +53591,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -52991,7 +53651,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -53000,8 +53660,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -53012,8 +53672,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 145, "quantityTypeId": "51984655", - "time": 62.8, - "timeString": "1 min 2 sec", + "time": 55, + "timeString": "55 sec", "fuel": null, "sulfur": 1208 }, @@ -53024,10 +53684,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -53219,7 +53879,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -53304,8 +53964,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -53329,7 +53989,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -53473,7 +54133,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -53533,7 +54193,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -53821,7 +54481,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -53905,7 +54565,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -53977,7 +54637,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -54025,7 +54685,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -54073,7 +54733,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -54121,7 +54781,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -54205,7 +54865,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -54255,6 +54915,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -54301,7 +54985,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -54421,7 +55105,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -54457,7 +55141,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -54514,8 +55198,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -54649,7 +55333,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -54709,7 +55393,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -54730,8 +55414,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -54745,7 +55429,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -54937,7 +55621,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -55022,8 +55706,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -55047,7 +55731,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -55191,7 +55875,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -55251,7 +55935,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -55539,7 +56223,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -55623,7 +56307,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -55695,7 +56379,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -55743,7 +56427,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -55791,7 +56475,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -55839,7 +56523,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -55923,7 +56607,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -55973,6 +56657,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -56019,7 +56727,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -56139,7 +56847,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -56175,7 +56883,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -56232,8 +56940,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -56367,7 +57075,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -56427,7 +57135,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -56436,8 +57144,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -56460,10 +57168,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -56655,7 +57363,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -56753,7 +57461,7 @@ "time": 40, "timeString": "40 sec", "fuel": null, - "sulfur": 140 + "sulfur": 84 }, { "group": "melee", @@ -56873,7 +57581,7 @@ "time": 3.8657, "timeString": "3 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "explosive", @@ -56933,7 +57641,7 @@ "time": 43.8, "timeString": "43 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "melee", @@ -57137,7 +57845,7 @@ "time": 9.7375, "timeString": "9 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -57221,7 +57929,7 @@ "time": 3.25, "timeString": "3 sec", "fuel": null, - "sulfur": 540 + "sulfur": 180 }, { "group": "melee", @@ -57293,7 +58001,7 @@ "time": 48, "timeString": "48 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "guns", @@ -57341,7 +58049,7 @@ "time": 8.32, "timeString": "8 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -57389,7 +58097,7 @@ "time": 2.76, "timeString": "2 sec", "fuel": null, - "sulfur": 480 + "sulfur": 160 }, { "group": "guns", @@ -57437,7 +58145,7 @@ "time": 8.15, "timeString": "8 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "guns", @@ -57521,7 +58229,7 @@ "time": 9.43, "timeString": "9 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "melee", @@ -57547,6 +58255,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "-1211166256", + "time": 3.9, + "timeString": "3 sec", + "fuel": null, + "sulfur": 133 + }, { "group": "guns", "which": null, @@ -57581,7 +58301,7 @@ "time": 7.8, "timeString": "7 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -57689,7 +58409,7 @@ "time": 18.45, "timeString": "18 sec", "fuel": null, - "sulfur": 373 + "sulfur": 140 }, { "group": "guns", @@ -57725,7 +58445,7 @@ "time": 23.475, "timeString": "23 sec", "fuel": null, - "sulfur": 573 + "sulfur": 215 }, { "group": "melee", @@ -57869,7 +58589,7 @@ "time": 13.8, "timeString": "13 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -57929,7 +58649,7 @@ "time": 14.925, "timeString": "14 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -57938,8 +58658,8 @@ "caption": "Pistol Bullet", "quantity": 50, "quantityTypeId": "785728077", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, "sulfur": 125 }, @@ -57950,8 +58670,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 50, "quantityTypeId": "51984655", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, "sulfur": 417 }, @@ -57962,10 +58682,10 @@ "caption": "HV Pistol Ammo", "quantity": 50, "quantityTypeId": "-1691396643", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -58157,7 +58877,7 @@ "time": 8.94, "timeString": "8 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -58218,8 +58938,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -58243,7 +58963,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -58387,7 +59107,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -58447,7 +59167,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -58735,7 +59455,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -58819,7 +59539,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -58891,7 +59611,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -58939,7 +59659,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -58987,7 +59707,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -59035,7 +59755,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -59119,7 +59839,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -59169,6 +59889,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -59215,7 +59959,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -59335,7 +60079,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -59371,7 +60115,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -59428,8 +60172,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -59563,7 +60307,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -59623,7 +60367,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -59644,8 +60388,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -59659,7 +60403,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -59851,7 +60595,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -59936,8 +60680,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -59961,7 +60705,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -60105,7 +60849,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -60165,7 +60909,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -60453,7 +61197,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -60537,7 +61281,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -60609,7 +61353,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -60657,7 +61401,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -60705,7 +61449,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -60753,7 +61497,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -60837,7 +61581,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -60887,6 +61631,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -60933,7 +61701,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -61053,7 +61821,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -61089,7 +61857,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -61146,8 +61914,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -61281,7 +62049,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -61341,7 +62109,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -61362,8 +62130,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -61377,7 +62145,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -61569,7 +62337,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -61667,7 +62435,7 @@ "time": 598, "timeString": "9 min 58 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 1200 }, { "group": "melee", @@ -61811,7 +62579,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -61871,7 +62639,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -62099,7 +62867,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -62183,7 +62951,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -62255,7 +63023,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -62303,7 +63071,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -62351,7 +63119,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -62399,7 +63167,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -62483,7 +63251,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -62533,6 +63301,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": null, @@ -62567,7 +63347,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -62687,7 +63467,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -62723,7 +63503,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -62778,10 +63558,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 232, + "quantity": 224, "quantityTypeId": null, - "time": 16898, - "timeString": "4 hours 41 min 38 sec", + "time": 12723, + "timeString": "3 hours 32 min 3 sec", "fuel": null, "sulfur": null }, @@ -62915,7 +63695,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -62975,7 +63755,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -62984,8 +63764,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -62996,8 +63776,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -63008,10 +63788,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -63203,7 +63983,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -63288,8 +64068,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -63313,7 +64093,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -63457,7 +64237,7 @@ "time": 34.7957, "timeString": "34 sec", "fuel": null, - "sulfur": 2680 + "sulfur": 894 }, { "group": "explosive", @@ -63517,7 +64297,7 @@ "time": 207.1, "timeString": "3 min 27 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "melee", @@ -63805,7 +64585,7 @@ "time": 43.7625, "timeString": "43 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -63889,7 +64669,7 @@ "time": 20.75, "timeString": "20 sec", "fuel": null, - "sulfur": 2320 + "sulfur": 774 }, { "group": "melee", @@ -63961,7 +64741,7 @@ "time": 222.2, "timeString": "3 min 42 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "guns", @@ -64009,7 +64789,7 @@ "time": 39.32, "timeString": "39 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -64057,7 +64837,7 @@ "time": 19.62, "timeString": "19 sec", "fuel": null, - "sulfur": 2060 + "sulfur": 687 }, { "group": "guns", @@ -64105,7 +64885,7 @@ "time": 41.725, "timeString": "41 sec", "fuel": null, - "sulfur": 2680 + "sulfur": 894 }, { "group": "guns", @@ -64189,7 +64969,7 @@ "time": 42.36, "timeString": "42 sec", "fuel": null, - "sulfur": 1986 + "sulfur": 745 }, { "group": "melee", @@ -64239,6 +65019,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 178, + "quantityTypeId": "-1211166256", + "time": 17.7, + "timeString": "17 sec", + "fuel": null, + "sulfur": 593 + }, { "group": "explosive", "which": null, @@ -64285,7 +65089,7 @@ "time": 37.2, "timeString": "37 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "melee", @@ -64405,7 +65209,7 @@ "time": 90.15, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 1626 + "sulfur": 610 }, { "group": "guns", @@ -64441,7 +65245,7 @@ "time": 107.425, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 2546 + "sulfur": 955 }, { "group": "melee", @@ -64496,10 +65300,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 24, + "quantity": 23, "quantityTypeId": null, - "time": 1690, - "timeString": "28 min 10 sec", + "time": 1272, + "timeString": "21 min 12 sec", "fuel": null, "sulfur": null }, @@ -64633,7 +65437,7 @@ "time": 68.9, "timeString": "1 min 8 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -64693,7 +65497,7 @@ "time": 71.3, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -64702,8 +65506,8 @@ "caption": "Pistol Bullet", "quantity": 223, "quantityTypeId": "785728077", - "time": 57.3, - "timeString": "57 sec", + "time": 49.5, + "timeString": "49 sec", "fuel": null, "sulfur": 558 }, @@ -64726,10 +65530,10 @@ "caption": "HV Pistol Ammo", "quantity": 223, "quantityTypeId": "-1691396643", - "time": 57.3, - "timeString": "57 sec", + "time": 49.5, + "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "guns", @@ -64921,7 +65725,7 @@ "time": 53.97, "timeString": "53 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "melee", @@ -65006,8 +65810,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -65031,7 +65835,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -65175,7 +65979,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -65235,7 +66039,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -65523,7 +66327,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -65607,7 +66411,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -65679,7 +66483,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -65727,7 +66531,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -65775,7 +66579,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -65823,7 +66627,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -65907,7 +66711,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -65957,6 +66761,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -66003,7 +66831,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -66123,7 +66951,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -66159,7 +66987,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -66216,8 +67044,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -66351,7 +67179,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -66411,7 +67239,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -66447,7 +67275,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -66639,7 +67467,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -66724,8 +67552,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -66749,7 +67577,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -66893,7 +67721,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -66953,7 +67781,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -67241,7 +68069,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -67325,7 +68153,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -67397,7 +68225,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -67445,7 +68273,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -67493,7 +68321,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -67541,7 +68369,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -67625,7 +68453,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -67675,6 +68503,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -67721,7 +68573,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -67841,7 +68693,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -67877,7 +68729,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -67934,8 +68786,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -68069,7 +68921,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -68129,7 +68981,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -68150,8 +69002,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -68165,7 +69017,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -68357,7 +69209,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -68442,8 +69294,8 @@ "quantityTypeId": null, "time": 12.330963048214, "timeString": "12 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -68467,7 +69319,7 @@ "time": 76, "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 260 + "sulfur": 156 }, { "group": "melee", @@ -68611,7 +69463,7 @@ "time": 36.9285, "timeString": "36 sec", "fuel": null, - "sulfur": 3000 + "sulfur": 1001 }, { "group": "explosive", @@ -68671,7 +69523,7 @@ "time": 234, "timeString": "3 min 54 sec", "fuel": null, - "sulfur": 1880 + "sulfur": 627 }, { "group": "melee", @@ -68959,7 +69811,7 @@ "time": 48.9125, "timeString": "48 sec", "fuel": null, - "sulfur": 2506 + "sulfur": 940 }, { "group": "guns", @@ -69043,7 +69895,7 @@ "time": 29, "timeString": "29 sec", "fuel": null, - "sulfur": 2620 + "sulfur": 874 }, { "group": "melee", @@ -69115,7 +69967,7 @@ "time": 249, "timeString": "4 min 9 sec", "fuel": null, - "sulfur": 1880 + "sulfur": 627 }, { "group": "guns", @@ -69163,7 +70015,7 @@ "time": 45.72, "timeString": "45 sec", "fuel": null, - "sulfur": 3760 + "sulfur": 1254 }, { "group": "guns", @@ -69211,7 +70063,7 @@ "time": 21.18, "timeString": "21 sec", "fuel": null, - "sulfur": 2320 + "sulfur": 774 }, { "group": "guns", @@ -69259,7 +70111,7 @@ "time": 47.6, "timeString": "47 sec", "fuel": null, - "sulfur": 3000 + "sulfur": 1001 }, { "group": "guns", @@ -69343,7 +70195,7 @@ "time": 49.54, "timeString": "49 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "melee", @@ -69393,6 +70245,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 153, + "quantityTypeId": null, + "time": 36.1, + "timeString": "36 sec", + "fuel": 153, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 200, + "quantityTypeId": "-1211166256", + "time": 19.9, + "timeString": "19 sec", + "fuel": null, + "sulfur": 666 + }, { "group": "explosive", "which": null, @@ -69439,7 +70315,7 @@ "time": 43.3, "timeString": "43 sec", "fuel": null, - "sulfur": 2666 + "sulfur": 1000 }, { "group": "melee", @@ -69559,7 +70435,7 @@ "time": 99.6, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 1826 + "sulfur": 685 }, { "group": "guns", @@ -69595,7 +70471,7 @@ "time": 121.3, "timeString": "2 min 1 sec", "fuel": null, - "sulfur": 2866 + "sulfur": 1075 }, { "group": "melee", @@ -69650,10 +70526,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 4, + "quantity": 3, "quantityTypeId": null, - "time": 253, - "timeString": "4 min 13 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -69787,7 +70663,7 @@ "time": 77.55, "timeString": "1 min 17 sec", "fuel": null, - "sulfur": 2506 + "sulfur": 940 }, { "group": "guns", @@ -69847,7 +70723,7 @@ "time": 79.2, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 3760 + "sulfur": 1254 }, { "group": "guns", @@ -69856,8 +70732,8 @@ "caption": "Pistol Bullet", "quantity": 250, "quantityTypeId": "785728077", - "time": 63.9, - "timeString": "1 min 3 sec", + "time": 56.1, + "timeString": "56 sec", "fuel": null, "sulfur": 625 }, @@ -69880,10 +70756,10 @@ "caption": "HV Pistol Ammo", "quantity": 250, "quantityTypeId": "-1691396643", - "time": 63.9, - "timeString": "1 min 3 sec", + "time": 56.1, + "timeString": "56 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -70075,7 +70951,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 2666 + "sulfur": 1000 }, { "group": "melee", @@ -70160,8 +71036,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -70185,7 +71061,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -70329,7 +71205,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -70389,7 +71265,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -70677,7 +71553,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -70761,7 +71637,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -70833,7 +71709,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -70881,7 +71757,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -70929,7 +71805,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -70977,7 +71853,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -71061,7 +71937,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -71111,6 +71987,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -71157,7 +72057,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -71277,7 +72177,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -71313,7 +72213,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -71370,8 +72270,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -71505,7 +72405,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -71565,7 +72465,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -71586,8 +72486,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -71601,7 +72501,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -71793,7 +72693,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -71878,8 +72778,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -71903,7 +72803,7 @@ "time": 34, "timeString": "34 sec", "fuel": null, - "sulfur": 120 + "sulfur": 72 }, { "group": "melee", @@ -72047,7 +72947,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -72107,7 +73007,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -72395,7 +73295,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -72479,7 +73379,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -72551,7 +73451,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -72599,7 +73499,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -72647,7 +73547,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -72695,7 +73595,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -72779,7 +73679,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -72829,6 +73729,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -72875,7 +73799,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -72995,7 +73919,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -73031,7 +73955,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -73088,8 +74012,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 67, - "timeString": "1 min 7 sec", + "time": 34, + "timeString": "34 sec", "fuel": null, "sulfur": null }, @@ -73223,7 +74147,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -73283,7 +74207,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -73292,8 +74216,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -73304,8 +74228,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 127, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 53.2, + "timeString": "53 sec", "fuel": null, "sulfur": 1058 }, @@ -73316,10 +74240,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -73511,7 +74435,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -73596,8 +74520,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -73621,7 +74545,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -73765,7 +74689,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -73825,7 +74749,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -74113,7 +75037,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -74197,7 +75121,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -74269,7 +75193,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -74317,7 +75241,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -74365,7 +75289,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -74413,7 +75337,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -74497,7 +75421,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -74547,6 +75471,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -74593,7 +75541,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -74713,7 +75661,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -74749,7 +75697,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -74806,8 +75754,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -74941,7 +75889,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -75001,7 +75949,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -75022,8 +75970,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -75037,7 +75985,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -75229,7 +76177,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -75314,8 +76262,8 @@ "quantityTypeId": null, "time": 32.882568128571, "timeString": "32 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -75339,7 +76287,7 @@ "time": 196, "timeString": "3 min 16 sec", "fuel": null, - "sulfur": 660 + "sulfur": 396 }, { "group": "melee", @@ -75483,7 +76431,7 @@ "time": 108.6538, "timeString": "1 min 48 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "explosive", @@ -75543,7 +76491,7 @@ "time": 627.9, "timeString": "10 min 27 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "melee", @@ -75831,7 +76779,7 @@ "time": 131.4, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -75915,7 +76863,7 @@ "time": 75.25, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 6960 + "sulfur": 2321 }, { "group": "melee", @@ -75987,7 +76935,7 @@ "time": 667, "timeString": "11 min 7 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -76035,7 +76983,7 @@ "time": 121.96, "timeString": "2 min 1 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -76083,7 +77031,7 @@ "time": 58.98, "timeString": "58 sec", "fuel": null, - "sulfur": 6160 + "sulfur": 2054 }, { "group": "guns", @@ -76131,7 +77079,7 @@ "time": 128.25, "timeString": "2 min 8 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "guns", @@ -76215,7 +77163,7 @@ "time": 131.56, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -76265,6 +77213,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 407, + "quantityTypeId": null, + "time": 64.9, + "timeString": "1 min 4 sec", + "fuel": 407, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 534, + "quantityTypeId": "-1211166256", + "time": 56.7, + "timeString": "56 sec", + "fuel": null, + "sulfur": 1778 + }, { "group": "explosive", "which": null, @@ -76311,7 +77283,7 @@ "time": 119.6, "timeString": "1 min 59 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -76431,7 +77403,7 @@ "time": 270.45, "timeString": "4 min 30 sec", "fuel": null, - "sulfur": 4852 + "sulfur": 1820 }, { "group": "guns", @@ -76467,7 +77439,7 @@ "time": 328.9, "timeString": "5 min 28 sec", "fuel": null, - "sulfur": 7625 + "sulfur": 2860 }, { "group": "melee", @@ -76522,10 +77494,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 10, + "quantity": 9, "quantityTypeId": null, - "time": 676, - "timeString": "11 min 16 sec", + "time": 508, + "timeString": "8 min 28 sec", "fuel": null, "sulfur": null }, @@ -76659,7 +77631,7 @@ "time": 209.6, "timeString": "3 min 29 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -76719,7 +77691,7 @@ "time": 218.3, "timeString": "3 min 38 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -76728,8 +77700,8 @@ "caption": "Pistol Bullet", "quantity": 667, "quantityTypeId": "785728077", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, "sulfur": 1668 }, @@ -76740,8 +77712,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 253, "quantityTypeId": "51984655", - "time": 89.2, - "timeString": "1 min 29 sec", + "time": 81.4, + "timeString": "1 min 21 sec", "fuel": null, "sulfur": 2107 }, @@ -76752,10 +77724,10 @@ "caption": "HV Pistol Ammo", "quantity": 667, "quantityTypeId": "-1691396643", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, - "sulfur": 8891 + "sulfur": 3335 }, { "group": "guns", @@ -76947,7 +77919,7 @@ "time": 169.91, "timeString": "2 min 49 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -77032,8 +78004,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -77057,7 +78029,7 @@ "time": 238, "timeString": "3 min 58 sec", "fuel": null, - "sulfur": 800 + "sulfur": 480 }, { "group": "melee", @@ -77201,7 +78173,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "explosive", @@ -77261,7 +78233,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "melee", @@ -77549,7 +78521,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -77633,7 +78605,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "melee", @@ -77705,7 +78677,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -77753,7 +78725,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -77801,7 +78773,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -77849,7 +78821,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -77933,7 +78905,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "melee", @@ -77983,6 +78955,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, { "group": "explosive", "which": null, @@ -78029,7 +79025,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -78149,7 +79145,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -78185,7 +79181,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "melee", @@ -78240,10 +79236,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 8, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 424, + "timeString": "7 min 4 sec", "fuel": null, "sulfur": null }, @@ -78377,7 +79373,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -78437,7 +79433,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -78446,8 +79442,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -78470,10 +79466,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -78665,7 +79661,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -78750,8 +79746,8 @@ "quantityTypeId": null, "time": 4.9323852192856, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -78775,7 +79771,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -78919,7 +79915,7 @@ "time": 12.1314, "timeString": "12 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "explosive", @@ -78979,7 +79975,7 @@ "time": 92.6, "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "melee", @@ -79267,7 +80263,7 @@ "time": 19.475, "timeString": "19 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -79351,7 +80347,7 @@ "time": 6.5, "timeString": "6 sec", "fuel": null, - "sulfur": 1060 + "sulfur": 354 }, { "group": "melee", @@ -79423,7 +80419,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -79471,7 +80467,7 @@ "time": 16.64, "timeString": "16 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -79519,7 +80515,7 @@ "time": 5.52, "timeString": "5 sec", "fuel": null, - "sulfur": 940 + "sulfur": 313 }, { "group": "guns", @@ -79567,7 +80563,7 @@ "time": 16.475, "timeString": "16 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "guns", @@ -79651,7 +80647,7 @@ "time": 18.86, "timeString": "18 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -79701,6 +80697,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 62, + "quantityTypeId": null, + "time": 23.6, + "timeString": "23 sec", + "fuel": 62, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 80, + "quantityTypeId": "-1211166256", + "time": 7.9, + "timeString": "7 sec", + "fuel": null, + "sulfur": 266 + }, { "group": "explosive", "which": null, @@ -79747,7 +80767,7 @@ "time": 15.7, "timeString": "15 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -79867,7 +80887,7 @@ "time": 40.5, "timeString": "40 sec", "fuel": null, - "sulfur": 733 + "sulfur": 275 }, { "group": "guns", @@ -79903,7 +80923,7 @@ "time": 47.125, "timeString": "47 sec", "fuel": null, - "sulfur": 1146 + "sulfur": 430 }, { "group": "melee", @@ -79960,8 +80980,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 20, - "timeString": "20 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -80095,7 +81115,7 @@ "time": 30.35, "timeString": "30 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -80155,7 +81175,7 @@ "time": 29.85, "timeString": "29 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -80164,8 +81184,8 @@ "caption": "Pistol Bullet", "quantity": 100, "quantityTypeId": "785728077", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 250 }, @@ -80188,10 +81208,10 @@ "caption": "HV Pistol Ammo", "quantity": 100, "quantityTypeId": "-1691396643", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -80383,7 +81403,7 @@ "time": 21.88, "timeString": "21 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -80468,8 +81488,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -80493,7 +81513,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -80637,7 +81657,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -80697,7 +81717,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -80985,7 +82005,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -81069,7 +82089,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -81141,7 +82161,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -81189,7 +82209,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -81237,7 +82257,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -81285,7 +82305,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -81369,7 +82389,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -81419,6 +82439,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "explosive", "which": null, @@ -81465,7 +82509,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -81585,7 +82629,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -81621,7 +82665,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -81678,8 +82722,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 2, + "timeString": "2 sec", "fuel": null, "sulfur": null }, @@ -81813,7 +82857,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -81873,7 +82917,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -81909,7 +82953,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -82101,7 +83145,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -82186,8 +83230,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -82211,7 +83255,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -82355,7 +83399,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -82415,7 +83459,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -82703,7 +83747,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -82787,7 +83831,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -82859,7 +83903,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -82907,7 +83951,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -82955,7 +83999,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -83003,7 +84047,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -83087,7 +84131,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -83137,6 +84181,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -83183,7 +84251,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -83303,7 +84371,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -83339,7 +84407,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -83394,10 +84462,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 7, + "quantity": 5, "quantityTypeId": null, - "time": 506, - "timeString": "8 min 26 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -83531,7 +84599,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -83591,7 +84659,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -83600,8 +84668,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -83612,8 +84680,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 28, "quantityTypeId": "51984655", - "time": 31.6, - "timeString": "31 sec", + "time": 27.7, + "timeString": "27 sec", "fuel": null, "sulfur": 233 }, @@ -83624,10 +84692,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -83819,7 +84887,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -83904,8 +84972,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -83929,7 +84997,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -84073,7 +85141,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -84133,7 +85201,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -84421,7 +85489,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -84505,7 +85573,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -84577,7 +85645,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -84625,7 +85693,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -84673,7 +85741,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -84721,7 +85789,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -84805,7 +85873,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -84855,6 +85923,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -84901,7 +85993,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -85021,7 +86113,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -85057,7 +86149,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -85114,8 +86206,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -85249,7 +86341,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -85309,7 +86401,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -85318,8 +86410,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -85342,10 +86434,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -85537,7 +86629,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -85635,7 +86727,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -85755,7 +86847,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 100 + "sulfur": 33 }, { "group": "explosive", @@ -85815,7 +86907,7 @@ "time": 5.1, "timeString": "5 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "melee", @@ -86019,7 +87111,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 93 + "sulfur": 35 }, { "group": "guns", @@ -86103,7 +87195,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 100 + "sulfur": 33 }, { "group": "melee", @@ -86175,7 +87267,7 @@ "time": 7.8, "timeString": "7 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "guns", @@ -86223,7 +87315,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -86271,7 +87363,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "guns", @@ -86319,7 +87411,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 100 + "sulfur": 33 }, { "group": "guns", @@ -86403,7 +87495,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 80 + "sulfur": 30 }, { "group": "melee", @@ -86429,6 +87521,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 7, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 23 + }, { "group": "guns", "which": null, @@ -86463,7 +87567,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 93 + "sulfur": 35 }, { "group": "melee", @@ -86571,7 +87675,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 67 + "sulfur": 25 }, { "group": "guns", @@ -86607,7 +87711,7 @@ "time": 1.225, "timeString": "1 sec", "fuel": null, - "sulfur": 107 + "sulfur": 40 }, { "group": "melee", @@ -86751,7 +87855,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 93 + "sulfur": 35 }, { "group": "guns", @@ -86811,7 +87915,7 @@ "time": 1.05, "timeString": "1 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -86847,7 +87951,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 120 + "sulfur": 45 }, { "group": "guns", @@ -87039,7 +88143,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 93 + "sulfur": 35 }, { "group": "melee", @@ -87113,7 +88217,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -87233,7 +88337,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -87293,7 +88397,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -87497,7 +88601,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -87581,7 +88685,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -87653,7 +88757,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -87701,7 +88805,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -87749,7 +88853,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -87797,7 +88901,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -87881,7 +88985,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -87907,6 +89011,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "guns", "which": null, @@ -87941,7 +89057,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -88049,7 +89165,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -88085,7 +89201,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -88229,7 +89345,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -88289,7 +89405,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -88325,7 +89441,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -88517,7 +89633,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -88574,12 +89690,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 420, + "quantity": 210, "quantityTypeId": null, - "time": 2514, - "timeString": "41 min 54 sec", - "fuel": 106260, - "sulfur": 256200 + "time": 1254, + "timeString": "20 min 54 sec", + "fuel": 15750, + "sulfur": 63000 }, { "group": "explosive", @@ -88603,7 +89719,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -88747,7 +89863,7 @@ "time": 26.6633, "timeString": "26 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "explosive", @@ -88807,7 +89923,7 @@ "time": 163.3, "timeString": "2 min 43 sec", "fuel": null, - "sulfur": 1320 + "sulfur": 440 }, { "group": "melee", @@ -89203,7 +90319,7 @@ "time": 34.25, "timeString": "34 sec", "fuel": null, - "sulfur": 1760 + "sulfur": 660 }, { "group": "guns", @@ -89287,7 +90403,7 @@ "time": 17.75, "timeString": "17 sec", "fuel": null, - "sulfur": 1840 + "sulfur": 614 }, { "group": "melee", @@ -89359,7 +90475,7 @@ "time": 174.2, "timeString": "2 min 54 sec", "fuel": null, - "sulfur": 1320 + "sulfur": 440 }, { "group": "guns", @@ -89407,7 +90523,7 @@ "time": 31.24, "timeString": "31 sec", "fuel": null, - "sulfur": 2640 + "sulfur": 880 }, { "group": "guns", @@ -89455,7 +90571,7 @@ "time": 9.6, "timeString": "9 sec", "fuel": null, - "sulfur": 1620 + "sulfur": 540 }, { "group": "guns", @@ -89503,7 +90619,7 @@ "time": 33.575, "timeString": "33 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -89587,7 +90703,7 @@ "time": 33.08, "timeString": "33 sec", "fuel": null, - "sulfur": 1560 + "sulfur": 585 }, { "group": "melee", @@ -89637,6 +90753,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 2625, + "quantityTypeId": null, + "time": 320.2, + "timeString": "5 min 20 sec", + "fuel": 2625, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 140, + "quantityTypeId": "-1211166256", + "time": 13.9, + "timeString": "13 sec", + "fuel": null, + "sulfur": 466 + }, { "group": "explosive", "which": null, @@ -89683,7 +90823,7 @@ "time": 29.5, "timeString": "29 sec", "fuel": null, - "sulfur": 1866 + "sulfur": 700 }, { "group": "guns", @@ -89827,7 +90967,7 @@ "time": 68.25, "timeString": "1 min 8 sec", "fuel": null, - "sulfur": 1280 + "sulfur": 480 }, { "group": "guns", @@ -89863,7 +91003,7 @@ "time": 84.125, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 750 }, { "group": "melee", @@ -89920,8 +91060,8 @@ "caption": null, "quantity": 5, "quantityTypeId": null, - "time": 354, - "timeString": "5 min 54 sec", + "time": 267, + "timeString": "4 min 27 sec", "fuel": null, "sulfur": null }, @@ -90055,7 +91195,7 @@ "time": 55.4, "timeString": "55 sec", "fuel": null, - "sulfur": 1760 + "sulfur": 660 }, { "group": "guns", @@ -90115,7 +91255,7 @@ "time": 56.725, "timeString": "56 sec", "fuel": null, - "sulfur": 2640 + "sulfur": 880 }, { "group": "guns", @@ -90124,8 +91264,8 @@ "caption": "Pistol Bullet", "quantity": 175, "quantityTypeId": "785728077", - "time": 44.7, - "timeString": "44 sec", + "time": 36.9, + "timeString": "36 sec", "fuel": null, "sulfur": 438 }, @@ -90136,8 +91276,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 166, "quantityTypeId": "51984655", - "time": 39.9, - "timeString": "39 sec", + "time": 36, + "timeString": "36 sec", "fuel": null, "sulfur": 1383 }, @@ -90148,10 +91288,10 @@ "caption": "HV Pistol Ammo", "quantity": 175, "quantityTypeId": "-1691396643", - "time": 44.7, - "timeString": "44 sec", + "time": 36.9, + "timeString": "36 sec", "fuel": null, - "sulfur": 2333 + "sulfur": 875 }, { "group": "guns", @@ -90367,7 +91507,7 @@ "time": 41.29, "timeString": "41 sec", "fuel": null, - "sulfur": 1866 + "sulfur": 700 }, { "group": "melee", @@ -90477,7 +91617,7 @@ "time": 190, "timeString": "3 min 10 sec", "fuel": null, - "sulfur": 640 + "sulfur": 384 }, { "group": "explosive", @@ -90844,10 +91984,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 24, + "quantity": 23, "quantityTypeId": null, - "time": 1690, - "timeString": "28 min 10 sec", + "time": 1272, + "timeString": "21 min 12 sec", "fuel": null, "sulfur": null }, @@ -90870,8 +92010,8 @@ "caption": null, "quantity": 3, "quantityTypeId": null, - "time": 169, - "timeString": "2 min 49 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -91066,8 +92206,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -91091,7 +92231,7 @@ "time": 46, "timeString": "46 sec", "fuel": null, - "sulfur": 160 + "sulfur": 96 }, { "group": "melee", @@ -91235,7 +92375,7 @@ "time": 17.3312, "timeString": "17 sec", "fuel": null, - "sulfur": 1340 + "sulfur": 447 }, { "group": "explosive", @@ -91295,7 +92435,7 @@ "time": 102.7, "timeString": "1 min 42 sec", "fuel": null, - "sulfur": 840 + "sulfur": 280 }, { "group": "melee", @@ -91583,7 +92723,7 @@ "time": 20.4875, "timeString": "20 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -91667,7 +92807,7 @@ "time": 7.125, "timeString": "7 sec", "fuel": null, - "sulfur": 1160 + "sulfur": 387 }, { "group": "melee", @@ -91739,7 +92879,7 @@ "time": 109.8, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 840 + "sulfur": 280 }, { "group": "guns", @@ -91787,7 +92927,7 @@ "time": 17.72, "timeString": "17 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "guns", @@ -91835,7 +92975,7 @@ "time": 6.12, "timeString": "6 sec", "fuel": null, - "sulfur": 1040 + "sulfur": 347 }, { "group": "guns", @@ -91883,7 +93023,7 @@ "time": 20.775, "timeString": "20 sec", "fuel": null, - "sulfur": 1340 + "sulfur": 447 }, { "group": "guns", @@ -91967,7 +93107,7 @@ "time": 20.06, "timeString": "20 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "melee", @@ -92017,6 +93157,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 89, + "quantityTypeId": "-1211166256", + "time": 8.8, + "timeString": "8 sec", + "fuel": null, + "sulfur": 296 + }, { "group": "explosive", "which": null, @@ -92063,7 +93227,7 @@ "time": 16.6, "timeString": "16 sec", "fuel": null, - "sulfur": 1186 + "sulfur": 445 }, { "group": "melee", @@ -92183,7 +93347,7 @@ "time": 45, "timeString": "45 sec", "fuel": null, - "sulfur": 813 + "sulfur": 305 }, { "group": "guns", @@ -92219,7 +93383,7 @@ "time": 52.1, "timeString": "52 sec", "fuel": null, - "sulfur": 1280 + "sulfur": 480 }, { "group": "melee", @@ -92274,10 +93438,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 3, + "quantity": 2, "quantityTypeId": null, - "time": 169, - "timeString": "2 min 49 sec", + "time": 85, + "timeString": "1 min 25 sec", "fuel": null, "sulfur": null }, @@ -92411,7 +93575,7 @@ "time": 34.45, "timeString": "34 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -92471,7 +93635,7 @@ "time": 35.65, "timeString": "35 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "guns", @@ -92480,8 +93644,8 @@ "caption": "Pistol Bullet", "quantity": 112, "quantityTypeId": "785728077", - "time": 26.7, - "timeString": "26 sec", + "time": 22.8, + "timeString": "22 sec", "fuel": null, "sulfur": 280 }, @@ -92504,10 +93668,10 @@ "caption": "HV Pistol Ammo", "quantity": 112, "quantityTypeId": "-1691396643", - "time": 26.7, - "timeString": "26 sec", + "time": 22.8, + "timeString": "22 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "guns", @@ -92699,7 +93863,7 @@ "time": 26.92, "timeString": "26 sec", "fuel": null, - "sulfur": 1186 + "sulfur": 445 }, { "group": "melee", @@ -92738,6 +93902,1784 @@ "sulfur": null } ], + "962186730": [ + { + "group": "melee", + "which": null, + "toolId": "-2073432256", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 6.3, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-2073432256", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 25.5, + "timeString": "25 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "1248356124", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 10, + "timeString": "10 sec", + "fuel": 60, + "sulfur": 2200 + }, + { + "group": "melee", + "which": null, + "toolId": "-196667575", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 12, + "timeString": "12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1488979457", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 1.8, + "timeString": "1 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1488979457", + "caption": "Workbench Refill", + "quantity": 1, + "quantityTypeId": null, + "time": 1.8, + "timeString": "1 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1536855921", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 17, + "timeString": "17 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1536855921", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 13.5, + "timeString": "13 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "5.56 Rifle Ammo", + "quantity": 5, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 17 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 5, + "quantityTypeId": "-1321651331", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 125 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 5, + "quantityTypeId": "605467368", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 63 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 5, + "quantityTypeId": "1712070256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 33 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "5.56 Rifle Ammo", + "quantity": 4, + "quantityTypeId": "-1211166256", + "time": 5.1, + "timeString": "5 sec", + "fuel": null, + "sulfur": 13 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 4, + "quantityTypeId": "-1321651331", + "time": 5.1, + "timeString": "5 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "605467368", + "time": 3.4, + "timeString": "3 sec", + "fuel": null, + "sulfur": 38 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 4, + "quantityTypeId": "1712070256", + "time": 5.1, + "timeString": "5 sec", + "fuel": null, + "sulfur": 27 + }, + { + "group": "melee", + "which": null, + "toolId": "1711033574", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 9.8, + "timeString": "9 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1711033574", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 21, + "timeString": "21 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1814288539", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 7.7, + "timeString": "7 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1814288539", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 25.5, + "timeString": "25 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "High Velocity Arrow", + "quantity": 9, + "quantityTypeId": "-1023065463", + "time": 8, + "timeString": "8 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Wooden Arrow", + "quantity": 7, + "quantityTypeId": "-1234735557", + "time": 6, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Bone Arrow", + "quantity": 9, + "quantityTypeId": "215754713", + "time": 8, + "timeString": "8 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "14241751", + "caption": "Hunting Bow", + "quantity": 9, + "quantityTypeId": null, + "time": 8, + "timeString": "8 sec", + "fuel": 45, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Fire Arrow", + "quantity": 9, + "quantityTypeId": "14241751", + "time": 8, + "timeString": "8 sec", + "fuel": 45, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1104520648", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 2.8, + "timeString": "2 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1978999529", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 6, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1978999529", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 9, + "timeString": "9 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "High Velocity Arrow", + "quantity": 5, + "quantityTypeId": "-1023065463", + "time": 19, + "timeString": "19 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Wooden Arrow", + "quantity": 4, + "quantityTypeId": "-1234735557", + "time": 15, + "timeString": "15 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Bone Arrow", + "quantity": 5, + "quantityTypeId": "215754713", + "time": 19, + "timeString": "19 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Fire Arrow", + "quantity": 5, + "quantityTypeId": "14241751", + "time": 19, + "timeString": "19 sec", + "fuel": 25, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "High Velocity Arrow", + "quantity": 7, + "quantityTypeId": "-1023065463", + "time": 21.6, + "timeString": "21 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Wooden Arrow", + "quantity": 6, + "quantityTypeId": "-1234735557", + "time": 18, + "timeString": "18 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Bone Arrow", + "quantity": 7, + "quantityTypeId": "215754713", + "time": 21.6, + "timeString": "21 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Fire Arrow", + "quantity": 7, + "quantityTypeId": "14241751", + "time": 21.6, + "timeString": "21 sec", + "fuel": 35, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "Handmade Shell", + "quantity": 2, + "quantityTypeId": "588596902", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Buckshot", + "quantity": 2, + "quantityTypeId": "-1685290200", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 20 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Incendiary Shell", + "quantity": 2, + "quantityTypeId": "-1036635990", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Slug", + "quantity": 4, + "quantityTypeId": "-727717969", + "time": 6.5, + "timeString": "6 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "Handmade Shell", + "quantity": 2, + "quantityTypeId": "588596902", + "time": 3.36, + "timeString": "3 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Buckshot", + "quantity": 2, + "quantityTypeId": "-1685290200", + "time": 3.36, + "timeString": "3 sec", + "fuel": null, + "sulfur": 20 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Incendiary Shell", + "quantity": 2, + "quantityTypeId": "-1036635990", + "time": 3.36, + "timeString": "3 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Slug", + "quantity": 4, + "quantityTypeId": "-727717969", + "time": 8.72, + "timeString": "8 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "Pistol Bullet", + "quantity": 7, + "quantityTypeId": "785728077", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 18 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "Incendiary Pistol Bullet", + "quantity": 6, + "quantityTypeId": "51984655", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 50 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "HV Pistol Ammo", + "quantity": 7, + "quantityTypeId": "-1691396643", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 35 + }, + { + "group": "guns", + "which": null, + "toolId": "-1123473824", + "caption": "40mm Shotgun Round", + "quantity": 1, + "quantityTypeId": "1055319033", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1252059217", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 6.3, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1252059217", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 18, + "timeString": "18 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "5.56 Rifle Ammo", + "quantity": 5, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 17 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 5, + "quantityTypeId": "-1321651331", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 125 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 5, + "quantityTypeId": "605467368", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 63 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 5, + "quantityTypeId": "1712070256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 33 + }, + { + "group": "melee", + "which": null, + "toolId": "2040726127", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 3.5, + "timeString": "3 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "2040726127", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 6, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "5.56 Rifle Ammo", + "quantity": 4, + "quantityTypeId": "-1211166256", + "time": 7.8, + "timeString": "7 sec", + "fuel": null, + "sulfur": 13 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 4, + "quantityTypeId": "-1321651331", + "time": 7.8, + "timeString": "7 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "605467368", + "time": 5.2, + "timeString": "5 sec", + "fuel": null, + "sulfur": 38 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 4, + "quantityTypeId": "1712070256", + "time": 7.8, + "timeString": "7 sec", + "fuel": null, + "sulfur": 27 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "5.56 Rifle Ammo", + "quantity": 7, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 23 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 7, + "quantityTypeId": "-1321651331", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 175 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 6, + "quantityTypeId": "605467368", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 75 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 7, + "quantityTypeId": "1712070256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "5.56 Rifle Ammo", + "quantity": 4, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 13 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 4, + "quantityTypeId": "-1321651331", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 4, + "quantityTypeId": "605467368", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 50 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 4, + "quantityTypeId": "1712070256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 27 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "5.56 Rifle Ammo", + "quantity": 5, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 17 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 5, + "quantityTypeId": "-1321651331", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 125 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 5, + "quantityTypeId": "605467368", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 63 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 5, + "quantityTypeId": "1712070256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 33 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "Handmade Shell", + "quantity": 2, + "quantityTypeId": "588596902", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Buckshot", + "quantity": 2, + "quantityTypeId": "-1685290200", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 20 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Incendiary Shell", + "quantity": 3, + "quantityTypeId": "-1036635990", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 60 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Slug", + "quantity": 4, + "quantityTypeId": "-727717969", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "Pistol Bullet", + "quantity": 6, + "quantityTypeId": "785728077", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 15 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "Incendiary Pistol Bullet", + "quantity": 6, + "quantityTypeId": "51984655", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 50 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "HV Pistol Ammo", + "quantity": 6, + "quantityTypeId": "-1691396643", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 30 + }, + { + "group": "melee", + "which": null, + "toolId": "-1966748496", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 6, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1966748496", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 9, + "timeString": "9 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1137865085", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 5, + "timeString": "5 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1137865085", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 13.5, + "timeString": "13 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 7, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 23 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "Pistol Bullet", + "quantity": 7, + "quantityTypeId": "785728077", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 18 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "Incendiary Pistol Bullet", + "quantity": 7, + "quantityTypeId": "51984655", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 58 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "HV Pistol Ammo", + "quantity": 7, + "quantityTypeId": "-1691396643", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 35 + }, + { + "group": "guns", + "which": null, + "toolId": "1953903201", + "caption": "Nailgun Nails", + "quantity": 19, + "quantityTypeId": "-2097376851", + "time": 5.65, + "timeString": "5 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1491189398", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 7.5, + "timeString": "7 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1491189398", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 13.5, + "timeString": "13 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1302129395", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 9, + "timeString": "9 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1302129395", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 13.5, + "timeString": "13 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "Handmade Shell", + "quantity": 2, + "quantityTypeId": "588596902", + "time": 4.5, + "timeString": "4 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Buckshot", + "quantity": 2, + "quantityTypeId": "-1685290200", + "time": 4.5, + "timeString": "4 sec", + "fuel": null, + "sulfur": 20 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Incendiary Shell", + "quantity": 2, + "quantityTypeId": "-1036635990", + "time": 4.5, + "timeString": "4 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Slug", + "quantity": 4, + "quantityTypeId": "-727717969", + "time": 13.5, + "timeString": "13 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "Pistol Bullet", + "quantity": 5, + "quantityTypeId": "785728077", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 13 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "Incendiary Pistol Bullet", + "quantity": 5, + "quantityTypeId": "51984655", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 42 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "HV Pistol Ammo", + "quantity": 5, + "quantityTypeId": "-1691396643", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 25 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "Pistol Bullet", + "quantity": 8, + "quantityTypeId": "785728077", + "time": 1.225, + "timeString": "1 sec", + "fuel": null, + "sulfur": 20 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "Incendiary Pistol Bullet", + "quantity": 7, + "quantityTypeId": "51984655", + "time": 1.05, + "timeString": "1 sec", + "fuel": null, + "sulfur": 58 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "HV Pistol Ammo", + "quantity": 8, + "quantityTypeId": "-1691396643", + "time": 1.225, + "timeString": "1 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "melee", + "which": null, + "toolId": "963906841", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 22.1, + "timeString": "22 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "963906841", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 25.5, + "timeString": "25 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-262590403", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 6.25, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-262590403", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 10.5, + "timeString": "10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1506397857", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 3, + "timeString": "3 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1506397857", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 13.5, + "timeString": "13 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1780802565", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 6.25, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1780802565", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 18, + "timeString": "18 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "-1878475007", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 9, + "timeString": "9 sec", + "fuel": null, + "sulfur": 480 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "Handmade Shell", + "quantity": 2, + "quantityTypeId": "588596902", + "time": 1.1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Buckshot", + "quantity": 2, + "quantityTypeId": "-1685290200", + "time": 1.1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 20 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Incendiary Shell", + "quantity": 2, + "quantityTypeId": "-1036635990", + "time": 1.1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Slug", + "quantity": 4, + "quantityTypeId": "-727717969", + "time": 3.3, + "timeString": "3 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "Pistol Bullet", + "quantity": 7, + "quantityTypeId": "785728077", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 18 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "Incendiary Pistol Bullet", + "quantity": 6, + "quantityTypeId": "51984655", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 50 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "HV Pistol Ammo", + "quantity": 7, + "quantityTypeId": "-1691396643", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 35 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "5.56 Rifle Ammo", + "quantity": 7, + "quantityTypeId": "-1211166256", + "time": 1.05, + "timeString": "1 sec", + "fuel": null, + "sulfur": 23 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1321651331", + "caption": "Semi-Automatic Rifle", + "quantity": 7, + "quantityTypeId": null, + "time": 1.05, + "timeString": "1 sec", + "fuel": null, + "sulfur": 175 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 7, + "quantityTypeId": "-1321651331", + "time": 1.05, + "timeString": "1 sec", + "fuel": null, + "sulfur": 175 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 6, + "quantityTypeId": "605467368", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 75 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 7, + "quantityTypeId": "1712070256", + "time": 1.05, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "Pistol Bullet", + "quantity": 9, + "quantityTypeId": "785728077", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 23 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "Incendiary Pistol Bullet", + "quantity": 8, + "quantityTypeId": "51984655", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 67 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "HV Pistol Ammo", + "quantity": 9, + "quantityTypeId": "-1691396643", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 45 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "Handmade Shell", + "quantity": 2, + "quantityTypeId": "588596902", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Buckshot", + "quantity": 2, + "quantityTypeId": "-1685290200", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 20 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Incendiary Shell", + "quantity": 3, + "quantityTypeId": "-1036635990", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 60 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Slug", + "quantity": 5, + "quantityTypeId": "-727717969", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 50 + }, + { + "group": "guns", + "which": null, + "toolId": "-1517740219", + "caption": "Speargun Spear", + "quantity": 7, + "quantityTypeId": "-1800345240", + "time": 21.6, + "timeString": "21 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1583967946", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 10.8, + "timeString": "10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1583967946", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 25.5, + "timeString": "25 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "171931394", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 9, + "timeString": "9 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "171931394", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 25.5, + "timeString": "25 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1602646136", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 7.5, + "timeString": "7 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1602646136", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 10.5, + "timeString": "10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1469578201", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 6, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1469578201", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 9, + "timeString": "9 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1326180354", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 5, + "timeString": "5 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1326180354", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 13.5, + "timeString": "13 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "Pistol Bullet", + "quantity": 7, + "quantityTypeId": "785728077", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 18 + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "Incendiary Pistol Bullet", + "quantity": 7, + "quantityTypeId": "51984655", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 58 + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "HV Pistol Ammo", + "quantity": 7, + "quantityTypeId": "-1691396643", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 35 + }, + { + "group": "melee", + "which": null, + "toolId": "795236088", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 45.2, + "timeString": "45 sec", + "fuel": 2, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "795236088", + "caption": "Lit", + "quantity": 5, + "quantityTypeId": null, + "time": 45.6, + "timeString": "45 sec", + "fuel": 5, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1540934679", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 10.5, + "timeString": "10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1540934679", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 13.5, + "timeString": "13 sec", + "fuel": null, + "sulfur": null + } + ], "968421290": [ { "group": "explosive", @@ -92784,8 +95726,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -92809,7 +95751,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -92953,7 +95895,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -93013,7 +95955,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -93301,7 +96243,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -93385,7 +96327,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -93457,7 +96399,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -93505,7 +96447,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -93553,7 +96495,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -93601,7 +96543,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -93685,7 +96627,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -93735,6 +96677,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "explosive", "which": null, @@ -93781,7 +96747,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -93901,7 +96867,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -93937,7 +96903,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -93994,8 +96960,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 2, + "timeString": "2 sec", "fuel": null, "sulfur": null }, @@ -94129,7 +97095,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -94189,7 +97155,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -94225,7 +97191,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -94417,7 +97383,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -94502,8 +97468,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -94527,7 +97493,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -94671,7 +97637,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -94731,7 +97697,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -95127,7 +98093,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -95211,7 +98177,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -95283,7 +98249,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -95331,7 +98297,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -95379,7 +98345,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -95427,7 +98393,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -95511,7 +98477,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -95561,6 +98527,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 18, + "timeString": "18 sec", + "fuel": 6, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": null, @@ -95607,7 +98597,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -95751,7 +98741,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -95787,7 +98777,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -95979,7 +98969,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -96039,7 +99029,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -96075,7 +99065,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -96291,7 +99281,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -96388,8 +99378,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -96413,7 +99403,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -96557,7 +99547,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -96617,7 +99607,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -96905,7 +99895,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -96989,7 +99979,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -97061,7 +100051,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -97109,7 +100099,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -97157,7 +100147,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -97205,7 +100195,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -97289,7 +100279,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -97339,6 +100329,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -97385,7 +100399,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -97505,7 +100519,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -97541,7 +100555,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -97598,8 +100612,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -97733,7 +100747,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -97793,7 +100807,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -97814,8 +100828,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -97829,7 +100843,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -98021,7 +101035,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -98106,8 +101120,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -98131,7 +101145,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -98275,7 +101289,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -98335,7 +101349,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -98731,7 +101745,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -98815,7 +101829,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -98887,7 +101901,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -98935,7 +101949,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -98983,7 +101997,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -99031,7 +102045,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -99115,7 +102129,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -99165,6 +102179,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "explosive", "which": null, @@ -99211,7 +102249,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "guns", @@ -99355,7 +102393,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -99391,7 +102429,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -99448,8 +102486,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -99583,7 +102621,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -99643,7 +102681,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -99679,7 +102717,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -99895,7 +102933,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -99992,8 +103030,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -100017,7 +103055,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -100161,7 +103199,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -100221,7 +103259,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -100509,7 +103547,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -100593,7 +103631,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -100665,7 +103703,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -100713,7 +103751,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -100761,7 +103799,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -100809,7 +103847,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -100893,7 +103931,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -100943,6 +103981,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -100989,7 +104051,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -101109,7 +104171,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -101145,7 +104207,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -101202,8 +104264,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -101337,7 +104399,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -101397,7 +104459,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -101418,8 +104480,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -101433,7 +104495,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -101625,7 +104687,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -101710,8 +104772,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -101735,7 +104797,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -101879,7 +104941,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -101939,7 +105001,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -102227,7 +105289,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -102311,7 +105373,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -102383,7 +105445,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -102431,7 +105493,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -102479,7 +105541,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -102527,7 +105589,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -102611,7 +105673,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -102661,6 +105723,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -102707,7 +105793,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -102827,7 +105913,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -102863,7 +105949,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -102920,8 +106006,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 4, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -103055,7 +106141,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -103115,7 +106201,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -103151,7 +106237,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -103343,7 +106429,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -103428,8 +106514,8 @@ "quantityTypeId": null, "time": 12.330963048214, "timeString": "12 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -103453,7 +106539,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -103597,7 +106683,7 @@ "time": 12.1314, "timeString": "12 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "explosive", @@ -103657,7 +106743,7 @@ "time": 92.6, "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "melee", @@ -104053,7 +107139,7 @@ "time": 19.475, "timeString": "19 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -104137,7 +107223,7 @@ "time": 6.5, "timeString": "6 sec", "fuel": null, - "sulfur": 1060 + "sulfur": 354 }, { "group": "melee", @@ -104209,7 +107295,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -104257,7 +107343,7 @@ "time": 16.64, "timeString": "16 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -104305,7 +107391,7 @@ "time": 5.52, "timeString": "5 sec", "fuel": null, - "sulfur": 940 + "sulfur": 313 }, { "group": "guns", @@ -104353,7 +107439,7 @@ "time": 16.475, "timeString": "16 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "guns", @@ -104437,7 +107523,7 @@ "time": 18.86, "timeString": "18 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -104487,6 +107573,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 153, + "quantityTypeId": null, + "time": 36.1, + "timeString": "36 sec", + "fuel": 153, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 80, + "quantityTypeId": "-1211166256", + "time": 7.9, + "timeString": "7 sec", + "fuel": null, + "sulfur": 266 + }, { "group": "explosive", "which": null, @@ -104533,7 +107643,7 @@ "time": 15.7, "timeString": "15 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "guns", @@ -104677,7 +107787,7 @@ "time": 40.5, "timeString": "40 sec", "fuel": null, - "sulfur": 733 + "sulfur": 275 }, { "group": "guns", @@ -104713,7 +107823,7 @@ "time": 47.125, "timeString": "47 sec", "fuel": null, - "sulfur": 1146 + "sulfur": 430 }, { "group": "melee", @@ -104770,8 +107880,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 20, - "timeString": "20 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -104905,7 +108015,7 @@ "time": 30.35, "timeString": "30 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -104965,7 +108075,7 @@ "time": 29.85, "timeString": "29 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -104974,8 +108084,8 @@ "caption": "Pistol Bullet", "quantity": 100, "quantityTypeId": "785728077", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 250 }, @@ -104998,10 +108108,10 @@ "caption": "HV Pistol Ammo", "quantity": 100, "quantityTypeId": "-1691396643", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -105217,7 +108327,7 @@ "time": 21.88, "timeString": "21 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -105314,8 +108424,8 @@ "quantityTypeId": null, "time": 1.2330963048214, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -105339,7 +108449,7 @@ "time": 70, "timeString": "1 min 10 sec", "fuel": null, - "sulfur": 240 + "sulfur": 144 }, { "group": "melee", @@ -105483,7 +108593,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -105543,7 +108653,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -105831,7 +108941,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -105915,7 +109025,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -105987,7 +109097,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -106035,7 +109145,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -106083,7 +109193,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -106131,7 +109241,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -106215,7 +109325,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -106265,6 +109375,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 16, + "quantityTypeId": null, + "time": 19, + "timeString": "19 sec", + "fuel": 16, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -106311,7 +109445,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -106431,7 +109565,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -106467,7 +109601,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -106522,10 +109656,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 4, + "quantity": 3, "quantityTypeId": null, - "time": 253, - "timeString": "4 min 13 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -106659,7 +109793,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -106719,7 +109853,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -106728,8 +109862,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -106752,10 +109886,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -106947,7 +110081,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -107032,8 +110166,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -107057,7 +110191,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -107201,7 +110335,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -107261,7 +110395,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -107549,7 +110683,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -107633,7 +110767,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -107705,7 +110839,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -107753,7 +110887,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -107801,7 +110935,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -107849,7 +110983,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -107933,7 +111067,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -107983,6 +111117,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -108029,7 +111187,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -108149,7 +111307,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -108185,7 +111343,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -108242,8 +111400,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -108377,7 +111535,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -108437,7 +111595,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -108446,8 +111604,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -108470,10 +111628,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -108665,7 +111823,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -108750,8 +111908,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -108775,7 +111933,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -108919,7 +112077,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -108979,7 +112137,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -109267,7 +112425,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -109351,7 +112509,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -109423,7 +112581,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -109471,7 +112629,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -109519,7 +112677,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -109567,7 +112725,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -109651,7 +112809,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -109701,6 +112859,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -109747,7 +112929,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -109867,7 +113049,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -109903,7 +113085,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -109960,8 +113142,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -110095,7 +113277,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -110155,7 +113337,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -110176,8 +113358,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -110191,7 +113373,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -110383,7 +113565,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -110468,8 +113650,8 @@ "quantityTypeId": null, "time": 104.64770438571, "timeString": "1 min 44 sec", - "fuel": 506, - "sulfur": 1220 + "fuel": 150, + "sulfur": 600 }, { "group": "explosive", @@ -110493,7 +113675,7 @@ "time": 580, "timeString": "9 min 40 sec", "fuel": null, - "sulfur": 1940 + "sulfur": 1164 }, { "group": "melee", @@ -110637,7 +113819,7 @@ "time": 326.228, "timeString": "5 min 26 sec", "fuel": null, - "sulfur": 24000 + "sulfur": 8004 }, { "group": "explosive", @@ -110697,7 +113879,7 @@ "time": 1890.4, "timeString": "31 min 30 sec", "fuel": null, - "sulfur": 15000 + "sulfur": 5003 }, { "group": "melee", @@ -110985,7 +114167,7 @@ "time": 400, "timeString": "6 min 40 sec", "fuel": null, - "sulfur": 19995 + "sulfur": 7500 }, { "group": "guns", @@ -111069,7 +114251,7 @@ "time": 238.75, "timeString": "3 min 58 sec", "fuel": null, - "sulfur": 20880 + "sulfur": 6963 }, { "group": "melee", @@ -111141,7 +114323,7 @@ "time": 2007, "timeString": "33 min 27 sec", "fuel": null, - "sulfur": 15000 + "sulfur": 5003 }, { "group": "guns", @@ -111189,7 +114371,7 @@ "time": 370, "timeString": "6 min 10 sec", "fuel": null, - "sulfur": 30000 + "sulfur": 10005 }, { "group": "guns", @@ -111237,7 +114419,7 @@ "time": 177.18, "timeString": "2 min 57 sec", "fuel": null, - "sulfur": 18480 + "sulfur": 6163 }, { "group": "guns", @@ -111285,7 +114467,7 @@ "time": 391.25, "timeString": "6 min 31 sec", "fuel": null, - "sulfur": 24000 + "sulfur": 8004 }, { "group": "guns", @@ -111369,7 +114551,7 @@ "time": 397.07, "timeString": "6 min 37 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -111419,6 +114601,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1221, + "quantityTypeId": null, + "time": 166.7, + "timeString": "2 min 46 sec", + "fuel": 1221, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1600, + "quantityTypeId": "-1211166256", + "time": 176.9, + "timeString": "2 min 56 sec", + "fuel": null, + "sulfur": 5328 + }, { "group": "explosive", "which": null, @@ -111465,7 +114671,7 @@ "time": 366.6, "timeString": "6 min 6 sec", "fuel": null, - "sulfur": 21328 + "sulfur": 8000 }, { "group": "melee", @@ -111585,7 +114791,7 @@ "time": 815.1, "timeString": "13 min 35 sec", "fuel": null, - "sulfur": 14543 + "sulfur": 5455 }, { "group": "guns", @@ -111621,7 +114827,7 @@ "time": 990.1, "timeString": "16 min 30 sec", "fuel": null, - "sulfur": 22861 + "sulfur": 8575 }, { "group": "melee", @@ -111676,10 +114882,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 28, + "quantity": 18, "quantityTypeId": null, - "time": 2027, - "timeString": "33 min 47 sec", + "time": 1017, + "timeString": "16 min 57 sec", "fuel": null, "sulfur": null }, @@ -111813,7 +115019,7 @@ "time": 634.6, "timeString": "10 min 34 sec", "fuel": null, - "sulfur": 19995 + "sulfur": 7500 }, { "group": "guns", @@ -111873,7 +115079,7 @@ "time": 655.25, "timeString": "10 min 55 sec", "fuel": null, - "sulfur": 30000 + "sulfur": 10005 }, { "group": "guns", @@ -111882,8 +115088,8 @@ "caption": "Pistol Bullet", "quantity": 2000, "quantityTypeId": "785728077", - "time": 523.6, - "timeString": "8 min 43 sec", + "time": 457.3, + "timeString": "7 min 37 sec", "fuel": null, "sulfur": 5000 }, @@ -111894,8 +115100,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 758, "quantityTypeId": "51984655", - "time": 221.6, - "timeString": "3 min 41 sec", + "time": 198.2, + "timeString": "3 min 18 sec", "fuel": null, "sulfur": 6314 }, @@ -111906,10 +115112,10 @@ "caption": "HV Pistol Ammo", "quantity": 2000, "quantityTypeId": "-1691396643", - "time": 523.6, - "timeString": "8 min 43 sec", + "time": 457.3, + "timeString": "7 min 37 sec", "fuel": null, - "sulfur": 26660 + "sulfur": 10000 }, { "group": "guns", @@ -112101,7 +115307,7 @@ "time": 513.6, "timeString": "8 min 33 sec", "fuel": null, - "sulfur": 21328 + "sulfur": 8000 }, { "group": "melee", @@ -112182,12 +115388,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 260, + "quantity": 130, "quantityTypeId": null, - "time": 1554, - "timeString": "25 min 54 sec", - "fuel": 65780, - "sulfur": 158600 + "time": 774, + "timeString": "12 min 54 sec", + "fuel": 9750, + "sulfur": 39000 }, { "group": "explosive", @@ -112211,7 +115417,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -112355,7 +115561,7 @@ "time": 17.0646, "timeString": "17 sec", "fuel": null, - "sulfur": 1300 + "sulfur": 434 }, { "group": "explosive", @@ -112415,7 +115621,7 @@ "time": 101, "timeString": "1 min 41 sec", "fuel": null, - "sulfur": 820 + "sulfur": 273 }, { "group": "melee", @@ -112811,7 +116017,7 @@ "time": 20.2625, "timeString": "20 sec", "fuel": null, - "sulfur": 1093 + "sulfur": 410 }, { "group": "guns", @@ -112895,7 +116101,7 @@ "time": 7, "timeString": "7 sec", "fuel": null, - "sulfur": 1140 + "sulfur": 380 }, { "group": "melee", @@ -112967,7 +116173,7 @@ "time": 107.2, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 820 + "sulfur": 273 }, { "group": "guns", @@ -113015,7 +116221,7 @@ "time": 17.48, "timeString": "17 sec", "fuel": null, - "sulfur": 1640 + "sulfur": 547 }, { "group": "guns", @@ -113063,7 +116269,7 @@ "time": 5.88, "timeString": "5 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -113111,7 +116317,7 @@ "time": 20.425, "timeString": "20 sec", "fuel": null, - "sulfur": 1300 + "sulfur": 434 }, { "group": "guns", @@ -113195,7 +116401,7 @@ "time": 19.76, "timeString": "19 sec", "fuel": null, - "sulfur": 973 + "sulfur": 365 }, { "group": "melee", @@ -113245,6 +116451,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1625, + "quantityTypeId": null, + "time": 196.4, + "timeString": "3 min 16 sec", + "fuel": 1625, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 87, + "quantityTypeId": "-1211166256", + "time": 8.6, + "timeString": "8 sec", + "fuel": null, + "sulfur": 290 + }, { "group": "explosive", "which": null, @@ -113291,7 +116521,7 @@ "time": 16.4, "timeString": "16 sec", "fuel": null, - "sulfur": 1160 + "sulfur": 435 }, { "group": "guns", @@ -113435,7 +116665,7 @@ "time": 41.25, "timeString": "41 sec", "fuel": null, - "sulfur": 800 + "sulfur": 300 }, { "group": "guns", @@ -113471,7 +116701,7 @@ "time": 51.575, "timeString": "51 sec", "fuel": null, - "sulfur": 1240 + "sulfur": 465 }, { "group": "melee", @@ -113528,8 +116758,8 @@ "caption": null, "quantity": 3, "quantityTypeId": null, - "time": 219, - "timeString": "3 min 39 sec", + "time": 165, + "timeString": "2 min 45 sec", "fuel": null, "sulfur": null }, @@ -113663,7 +116893,7 @@ "time": 34.15, "timeString": "34 sec", "fuel": null, - "sulfur": 1093 + "sulfur": 410 }, { "group": "guns", @@ -113723,7 +116953,7 @@ "time": 35.3, "timeString": "35 sec", "fuel": null, - "sulfur": 1640 + "sulfur": 547 }, { "group": "guns", @@ -113732,8 +116962,8 @@ "caption": "Pistol Bullet", "quantity": 109, "quantityTypeId": "785728077", - "time": 26.4, - "timeString": "26 sec", + "time": 22.5, + "timeString": "22 sec", "fuel": null, "sulfur": 273 }, @@ -113744,8 +116974,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 103, "quantityTypeId": "51984655", - "time": 25.8, - "timeString": "25 sec", + "time": 21.9, + "timeString": "21 sec", "fuel": null, "sulfur": 858 }, @@ -113756,10 +116986,10 @@ "caption": "HV Pistol Ammo", "quantity": 109, "quantityTypeId": "-1691396643", - "time": 26.4, - "timeString": "26 sec", + "time": 22.5, + "timeString": "22 sec", "fuel": null, - "sulfur": 1453 + "sulfur": 545 }, { "group": "guns", @@ -113975,7 +117205,7 @@ "time": 26.66, "timeString": "26 sec", "fuel": null, - "sulfur": 1160 + "sulfur": 435 }, { "group": "melee", @@ -114072,8 +117302,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -114097,7 +117327,7 @@ "time": 238, "timeString": "3 min 58 sec", "fuel": null, - "sulfur": 800 + "sulfur": 480 }, { "group": "melee", @@ -114241,7 +117471,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "explosive", @@ -114301,7 +117531,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "melee", @@ -114589,7 +117819,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -114673,7 +117903,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "melee", @@ -114745,7 +117975,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -114793,7 +118023,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -114841,7 +118071,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -114889,7 +118119,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -114973,7 +118203,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "melee", @@ -115023,6 +118253,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, { "group": "explosive", "which": null, @@ -115069,7 +118323,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -115189,7 +118443,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -115225,7 +118479,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "melee", @@ -115280,10 +118534,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 8, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 424, + "timeString": "7 min 4 sec", "fuel": null, "sulfur": null }, @@ -115417,7 +118671,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -115477,7 +118731,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -115486,8 +118740,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -115510,10 +118764,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -115705,7 +118959,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -115790,8 +119044,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -115815,7 +119069,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -115959,7 +119213,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -116019,7 +119273,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -116307,7 +119561,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -116391,7 +119645,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -116463,7 +119717,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -116511,7 +119765,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -116559,7 +119813,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -116607,7 +119861,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -116691,7 +119945,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -116741,6 +119995,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -116787,7 +120065,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -116907,7 +120185,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -116943,7 +120221,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -116998,10 +120276,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 7, + "quantity": 5, "quantityTypeId": null, - "time": 506, - "timeString": "8 min 26 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -117135,7 +120413,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -117195,7 +120473,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -117204,8 +120482,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -117216,8 +120494,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 28, "quantityTypeId": "51984655", - "time": 31.6, - "timeString": "31 sec", + "time": 27.7, + "timeString": "27 sec", "fuel": null, "sulfur": 233 }, @@ -117228,10 +120506,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -117423,7 +120701,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -117521,7 +120799,7 @@ "time": 748, "timeString": "12 min 28 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 1500 }, { "group": "explosive", @@ -117768,10 +121046,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 93, + "quantity": 90, "quantityTypeId": null, - "time": 6759, - "timeString": "1 hour 52 min 39 sec", + "time": 5089, + "timeString": "1 hour 24 min 49 sec", "fuel": null, "sulfur": null }, @@ -117918,8 +121196,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -117943,7 +121221,7 @@ "time": 40, "timeString": "40 sec", "fuel": null, - "sulfur": 140 + "sulfur": 84 }, { "group": "melee", @@ -118087,7 +121365,7 @@ "time": 3.8657, "timeString": "3 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "explosive", @@ -118147,7 +121425,7 @@ "time": 43.8, "timeString": "43 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "melee", @@ -118435,7 +121713,7 @@ "time": 9.7375, "timeString": "9 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -118519,7 +121797,7 @@ "time": 3.25, "timeString": "3 sec", "fuel": null, - "sulfur": 540 + "sulfur": 180 }, { "group": "melee", @@ -118591,7 +121869,7 @@ "time": 48, "timeString": "48 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "guns", @@ -118639,7 +121917,7 @@ "time": 8.32, "timeString": "8 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -118687,7 +121965,7 @@ "time": 2.76, "timeString": "2 sec", "fuel": null, - "sulfur": 480 + "sulfur": 160 }, { "group": "guns", @@ -118735,7 +122013,7 @@ "time": 8.15, "timeString": "8 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "guns", @@ -118819,7 +122097,7 @@ "time": 9.43, "timeString": "9 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "melee", @@ -118869,6 +122147,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "-1211166256", + "time": 3.9, + "timeString": "3 sec", + "fuel": null, + "sulfur": 133 + }, { "group": "explosive", "which": null, @@ -118915,7 +122217,7 @@ "time": 7.8, "timeString": "7 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -119035,7 +122337,7 @@ "time": 18.45, "timeString": "18 sec", "fuel": null, - "sulfur": 373 + "sulfur": 140 }, { "group": "guns", @@ -119071,7 +122373,7 @@ "time": 23.475, "timeString": "23 sec", "fuel": null, - "sulfur": 573 + "sulfur": 215 }, { "group": "melee", @@ -119128,8 +122430,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 10, - "timeString": "10 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -119263,7 +122565,7 @@ "time": 13.8, "timeString": "13 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -119323,7 +122625,7 @@ "time": 14.925, "timeString": "14 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -119332,8 +122634,8 @@ "caption": "Pistol Bullet", "quantity": 50, "quantityTypeId": "785728077", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, "sulfur": 125 }, @@ -119356,10 +122658,10 @@ "caption": "HV Pistol Ammo", "quantity": 50, "quantityTypeId": "-1691396643", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -119551,7 +122853,7 @@ "time": 8.94, "timeString": "8 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -119636,8 +122938,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -119661,7 +122963,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -119805,7 +123107,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -119865,7 +123167,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -120261,7 +123563,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -120345,7 +123647,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -120417,7 +123719,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -120465,7 +123767,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -120513,7 +123815,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -120561,7 +123863,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -120645,7 +123947,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -120695,6 +123997,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 18, + "timeString": "18 sec", + "fuel": 6, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": null, @@ -120741,7 +124067,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -120885,7 +124211,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -120921,7 +124247,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -120978,8 +124304,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 2, - "timeString": "2 sec", + "time": 1, + "timeString": "1 sec", "fuel": null, "sulfur": null }, @@ -121113,7 +124439,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -121173,7 +124499,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -121209,7 +124535,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -121425,7 +124751,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -121522,8 +124848,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -121547,7 +124873,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -121691,7 +125017,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -121751,7 +125077,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -122039,7 +125365,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -122123,7 +125449,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -122195,7 +125521,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -122243,7 +125569,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -122291,7 +125617,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -122339,7 +125665,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -122423,7 +125749,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -122473,6 +125799,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "explosive", "which": null, @@ -122519,7 +125869,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -122639,7 +125989,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -122675,7 +126025,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -122732,8 +126082,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 2, + "timeString": "2 sec", "fuel": null, "sulfur": null }, @@ -122867,7 +126217,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -122927,7 +126277,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -122963,7 +126313,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -123155,7 +126505,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -123240,8 +126590,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -123265,7 +126615,7 @@ "time": 136, "timeString": "2 min 16 sec", "fuel": null, - "sulfur": 460 + "sulfur": 276 }, { "group": "melee", @@ -123409,7 +126759,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -123469,7 +126819,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -123757,7 +127107,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -123841,7 +127191,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -123913,7 +127263,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -123961,7 +127311,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -124009,7 +127359,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -124057,7 +127407,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -124141,7 +127491,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -124191,6 +127541,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -124237,7 +127611,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -124357,7 +127731,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -124393,7 +127767,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -124450,8 +127824,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 34, - "timeString": "34 sec", + "time": 17, + "timeString": "17 sec", "fuel": null, "sulfur": null }, @@ -124585,7 +127959,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -124645,7 +128019,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -124654,8 +128028,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -124678,10 +128052,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -124873,7 +128247,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -124971,7 +128345,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -125091,7 +128465,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -125151,7 +128525,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -125355,7 +128729,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -125439,7 +128813,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -125511,7 +128885,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -125559,7 +128933,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -125607,7 +128981,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -125655,7 +129029,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -125739,7 +129113,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -125765,6 +129139,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "guns", "which": null, @@ -125799,7 +129185,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -125907,7 +129293,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -125943,7 +129329,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -126087,7 +129473,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -126147,7 +129533,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -126183,7 +129569,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -126375,7 +129761,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -126436,8 +129822,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -126461,7 +129847,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -126605,7 +129991,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -126665,7 +130051,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -126953,7 +130339,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -127037,7 +130423,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -127109,7 +130495,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -127157,7 +130543,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -127205,7 +130591,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -127253,7 +130639,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -127337,7 +130723,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -127387,6 +130773,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -127433,7 +130843,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -127553,7 +130963,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -127589,7 +130999,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -127646,8 +131056,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -127781,7 +131191,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -127841,7 +131251,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -127877,7 +131287,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -128069,7 +131479,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -128154,8 +131564,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -128179,7 +131589,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -128323,7 +131733,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -128383,7 +131793,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -128671,7 +132081,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -128755,7 +132165,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -128827,7 +132237,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -128875,7 +132285,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -128923,7 +132333,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -128971,7 +132381,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -129055,7 +132465,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -129105,6 +132515,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -129151,7 +132585,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -129271,7 +132705,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -129307,7 +132741,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -129364,8 +132798,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -129499,7 +132933,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -129559,7 +132993,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -129580,8 +133014,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -129595,7 +133029,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -129787,7 +133221,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -129872,8 +133306,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -129897,7 +133331,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -130041,7 +133475,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -130101,7 +133535,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -130389,7 +133823,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -130473,7 +133907,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -130545,7 +133979,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -130593,7 +134027,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -130641,7 +134075,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -130689,7 +134123,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -130773,7 +134207,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -130823,6 +134257,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -130869,7 +134327,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -130989,7 +134447,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -131025,7 +134483,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -131080,10 +134538,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 7, + "quantity": 5, "quantityTypeId": null, - "time": 506, - "timeString": "8 min 26 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -131217,7 +134675,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -131277,7 +134735,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -131286,8 +134744,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -131298,8 +134756,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 28, "quantityTypeId": "51984655", - "time": 31.6, - "timeString": "31 sec", + "time": 27.7, + "timeString": "27 sec", "fuel": null, "sulfur": 233 }, @@ -131310,10 +134768,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -131505,7 +134963,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -131590,8 +135048,8 @@ "quantityTypeId": null, "time": 4.9323852192856, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -131615,7 +135073,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -131759,7 +135217,7 @@ "time": 12.1314, "timeString": "12 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "explosive", @@ -131819,7 +135277,7 @@ "time": 92.6, "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "melee", @@ -132107,7 +135565,7 @@ "time": 19.475, "timeString": "19 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -132191,7 +135649,7 @@ "time": 6.5, "timeString": "6 sec", "fuel": null, - "sulfur": 1060 + "sulfur": 354 }, { "group": "melee", @@ -132263,7 +135721,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -132311,7 +135769,7 @@ "time": 16.64, "timeString": "16 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -132359,7 +135817,7 @@ "time": 5.52, "timeString": "5 sec", "fuel": null, - "sulfur": 940 + "sulfur": 313 }, { "group": "guns", @@ -132407,7 +135865,7 @@ "time": 16.475, "timeString": "16 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "guns", @@ -132491,7 +135949,7 @@ "time": 18.86, "timeString": "18 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -132541,6 +135999,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 62, + "quantityTypeId": null, + "time": 23.6, + "timeString": "23 sec", + "fuel": 62, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 80, + "quantityTypeId": "-1211166256", + "time": 7.9, + "timeString": "7 sec", + "fuel": null, + "sulfur": 266 + }, { "group": "explosive", "which": null, @@ -132587,7 +136069,7 @@ "time": 15.7, "timeString": "15 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -132707,7 +136189,7 @@ "time": 40.5, "timeString": "40 sec", "fuel": null, - "sulfur": 733 + "sulfur": 275 }, { "group": "guns", @@ -132743,7 +136225,7 @@ "time": 47.125, "timeString": "47 sec", "fuel": null, - "sulfur": 1146 + "sulfur": 430 }, { "group": "melee", @@ -132800,8 +136282,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 20, - "timeString": "20 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -132935,7 +136417,7 @@ "time": 30.35, "timeString": "30 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -132995,7 +136477,7 @@ "time": 29.85, "timeString": "29 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -133004,8 +136486,8 @@ "caption": "Pistol Bullet", "quantity": 100, "quantityTypeId": "785728077", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 250 }, @@ -133028,10 +136510,10 @@ "caption": "HV Pistol Ammo", "quantity": 100, "quantityTypeId": "-1691396643", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -133223,7 +136705,7 @@ "time": 21.88, "timeString": "21 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -133308,8 +136790,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -133333,7 +136815,7 @@ "time": 22, "timeString": "22 sec", "fuel": null, - "sulfur": 80 + "sulfur": 48 }, { "group": "melee", @@ -133477,7 +136959,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -133537,7 +137019,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -133825,7 +137307,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -133909,7 +137391,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -133981,7 +137463,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -134029,7 +137511,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -134077,7 +137559,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -134125,7 +137607,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -134209,7 +137691,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -134259,6 +137741,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -134305,7 +137811,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -134425,7 +137931,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -134461,7 +137967,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -134518,8 +138024,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -134653,7 +138159,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -134713,7 +138219,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -134749,7 +138255,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -134941,7 +138447,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -135039,7 +138545,7 @@ "time": 196, "timeString": "3 min 16 sec", "fuel": null, - "sulfur": 660 + "sulfur": 396 }, { "group": "melee", @@ -135183,7 +138689,7 @@ "time": 108.6538, "timeString": "1 min 48 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "explosive", @@ -135243,7 +138749,7 @@ "time": 627.9, "timeString": "10 min 27 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "melee", @@ -135471,7 +138977,7 @@ "time": 131.4, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -135555,7 +139061,7 @@ "time": 75.25, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 6960 + "sulfur": 2321 }, { "group": "melee", @@ -135627,7 +139133,7 @@ "time": 667, "timeString": "11 min 7 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -135675,7 +139181,7 @@ "time": 121.96, "timeString": "2 min 1 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -135723,7 +139229,7 @@ "time": 58.98, "timeString": "58 sec", "fuel": null, - "sulfur": 6160 + "sulfur": 2054 }, { "group": "guns", @@ -135771,7 +139277,7 @@ "time": 128.25, "timeString": "2 min 8 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "guns", @@ -135855,7 +139361,7 @@ "time": 131.56, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -135905,6 +139411,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 534, + "quantityTypeId": "-1211166256", + "time": 56.7, + "timeString": "56 sec", + "fuel": null, + "sulfur": 1778 + }, { "group": "guns", "which": null, @@ -135939,7 +139457,7 @@ "time": 119.6, "timeString": "1 min 59 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -136059,7 +139577,7 @@ "time": 270.45, "timeString": "4 min 30 sec", "fuel": null, - "sulfur": 4852 + "sulfur": 1820 }, { "group": "guns", @@ -136095,7 +139613,7 @@ "time": 328.9, "timeString": "5 min 28 sec", "fuel": null, - "sulfur": 7625 + "sulfur": 2860 }, { "group": "melee", @@ -136152,8 +139670,8 @@ "caption": null, "quantity": 5, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -136287,7 +139805,7 @@ "time": 209.6, "timeString": "3 min 29 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -136347,7 +139865,7 @@ "time": 218.3, "timeString": "3 min 38 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -136356,8 +139874,8 @@ "caption": "Pistol Bullet", "quantity": 667, "quantityTypeId": "785728077", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, "sulfur": 1668 }, @@ -136368,8 +139886,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 667, "quantityTypeId": "51984655", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, "sulfur": 5556 }, @@ -136380,10 +139898,10 @@ "caption": "HV Pistol Ammo", "quantity": 667, "quantityTypeId": "-1691396643", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, - "sulfur": 8891 + "sulfur": 3335 }, { "group": "guns", @@ -136575,7 +140093,7 @@ "time": 169.91, "timeString": "2 min 49 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -136673,7 +140191,7 @@ "time": 748, "timeString": "12 min 28 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 1500 }, { "group": "explosive", @@ -136920,10 +140438,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 93, + "quantity": 90, "quantityTypeId": null, - "time": 6759, - "timeString": "1 hour 52 min 39 sec", + "time": 5089, + "timeString": "1 hour 24 min 49 sec", "fuel": null, "sulfur": null }, @@ -137070,8 +140588,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -137095,7 +140613,7 @@ "time": 100, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 340 + "sulfur": 204 }, { "group": "melee", @@ -137239,7 +140757,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -137299,7 +140817,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -137587,7 +141105,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -137671,7 +141189,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -137743,7 +141261,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -137791,7 +141309,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -137839,7 +141357,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -137887,7 +141405,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -137971,7 +141489,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -138021,6 +141539,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -138067,7 +141609,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -138187,7 +141729,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -138223,7 +141765,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -138278,10 +141820,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -138415,7 +141957,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -138475,7 +142017,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -138484,8 +142026,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -138496,8 +142038,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 127, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 53.2, + "timeString": "53 sec", "fuel": null, "sulfur": 1058 }, @@ -138508,10 +142050,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -138703,7 +142245,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -138788,8 +142330,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -138813,7 +142355,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -138957,7 +142499,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -139017,7 +142559,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -139305,7 +142847,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -139389,7 +142931,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -139461,7 +143003,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -139509,7 +143051,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -139557,7 +143099,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -139605,7 +143147,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -139689,7 +143231,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -139739,6 +143281,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -139785,7 +143351,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -139905,7 +143471,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -139941,7 +143507,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -139998,8 +143564,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 4, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -140133,7 +143699,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -140193,7 +143759,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -140229,7 +143795,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -140421,7 +143987,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -140506,8 +144072,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -140531,7 +144097,7 @@ "time": 70, "timeString": "1 min 10 sec", "fuel": null, - "sulfur": 240 + "sulfur": 144 }, { "group": "melee", @@ -140675,7 +144241,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -140735,7 +144301,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -141023,7 +144589,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -141107,7 +144673,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -141179,7 +144745,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -141227,7 +144793,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -141275,7 +144841,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -141323,7 +144889,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -141407,7 +144973,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -141457,6 +145023,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -141503,7 +145093,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -141623,7 +145213,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -141659,7 +145249,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -141716,8 +145306,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -141851,7 +145441,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -141911,7 +145501,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -141920,8 +145510,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -141944,10 +145534,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -142139,7 +145729,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -142196,9 +145786,9 @@ "which": null, "toolId": "349762871", "caption": null, - "quantity": 4, + "quantity": 3, "quantityTypeId": null, - "time": 1.2, + "time": 1, "timeString": "1 sec", "fuel": null, "sulfur": null @@ -142224,8 +145814,8 @@ "quantityTypeId": null, "time": 9.8647704385713, "timeString": "9 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -142249,17 +145839,17 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", "which": null, "toolId": "-2073432256", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 22, - "timeString": "22 sec", + "time": 14, + "timeString": "14 sec", "fuel": null, "sulfur": null }, @@ -142268,10 +145858,10 @@ "which": null, "toolId": "-2073432256", "caption": "Throw", - "quantity": 3, + "quantity": 2, "quantityTypeId": null, - "time": 90, - "timeString": "1 min 30 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -142292,10 +145882,10 @@ "which": null, "toolId": "-196667575", "caption": null, - "quantity": 31, + "quantity": 2, "quantityTypeId": null, - "time": 430, - "timeString": "7 min 10 sec", + "time": 28, + "timeString": "28 sec", "fuel": null, "sulfur": null }, @@ -142306,8 +145896,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 12, - "timeString": "12 sec", + "time": 4.05, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -142318,8 +145908,8 @@ "caption": "Workbench Refill", "quantity": 1, "quantityTypeId": null, - "time": 12, - "timeString": "12 sec", + "time": 4.05, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -142328,10 +145918,10 @@ "which": null, "toolId": "-1536855921", "caption": null, - "quantity": 24, + "quantity": 2, "quantityTypeId": null, - "time": 623, - "timeString": "10 min 23 sec", + "time": 41, + "timeString": "41 sec", "fuel": null, "sulfur": null }, @@ -142340,10 +145930,10 @@ "which": null, "toolId": "-1536855921", "caption": "Throw", - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 30, + "timeString": "30 sec", "fuel": null, "sulfur": null }, @@ -142393,19 +145983,19 @@ "time": 19.0641, "timeString": "19 sec", "fuel": null, - "sulfur": 1600 + "sulfur": 534 }, { "group": "explosive", "which": null, "toolId": "1840822026", "caption": null, - "quantity": 7, + "quantity": 3, "quantityTypeId": null, - "time": 12.15, - "timeString": "12 sec", + "time": 7.35, + "timeString": "7 sec", "fuel": null, - "sulfur": 840 + "sulfur": 360 }, { "group": "guns", @@ -142453,17 +146043,17 @@ "time": 122.9, "timeString": "2 min 2 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "melee", "which": null, "toolId": "1711033574", "caption": null, - "quantity": 21, + "quantity": 2, "quantityTypeId": null, - "time": 370, - "timeString": "6 min 10 sec", + "time": 24.8, + "timeString": "24 sec", "fuel": null, "sulfur": null }, @@ -142472,10 +146062,10 @@ "which": null, "toolId": "1711033574", "caption": "Throw", - "quantity": 25, + "quantity": 2, "quantityTypeId": null, - "time": 750, - "timeString": "12 min 30 sec", + "time": 51, + "timeString": "51 sec", "fuel": null, "sulfur": null }, @@ -142484,10 +146074,10 @@ "which": null, "toolId": "1814288539", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 36, - "timeString": "36 sec", + "time": 17.5, + "timeString": "17 sec", "fuel": null, "sulfur": null }, @@ -142496,10 +146086,10 @@ "which": null, "toolId": "1814288539", "caption": "Throw", - "quantity": 3, + "quantity": 2, "quantityTypeId": null, - "time": 90, - "timeString": "1 min 30 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -142532,10 +146122,10 @@ "which": null, "toolId": "1104520648", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 11, - "timeString": "11 sec", + "time": 6.8, + "timeString": "6 sec", "fuel": null, "sulfur": null }, @@ -142546,8 +146136,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 20, - "timeString": "20 sec", + "time": 14, + "timeString": "14 sec", "fuel": null, "sulfur": null }, @@ -142558,8 +146148,8 @@ "caption": "Throw", "quantity": 1, "quantityTypeId": null, - "time": 30, - "timeString": "30 sec", + "time": 21, + "timeString": "21 sec", "fuel": null, "sulfur": null }, @@ -142688,12 +146278,12 @@ "which": null, "toolId": "143803535", "caption": null, - "quantity": 29, + "quantity": 4, "quantityTypeId": null, - "time": 37.3, - "timeString": "37 sec", + "time": 7.3, + "timeString": "7 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 240 }, { "group": "explosive", @@ -142741,7 +146331,7 @@ "time": 25.075, "timeString": "25 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -142762,8 +146352,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 34.2, - "timeString": "34 sec", + "time": 14.4, + "timeString": "14 sec", "fuel": null, "sulfur": null }, @@ -142774,8 +146364,8 @@ "caption": "Throw", "quantity": 1, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 40.5, + "timeString": "40 sec", "fuel": null, "sulfur": null }, @@ -142825,17 +146415,17 @@ "time": 15, "timeString": "15 sec", "fuel": null, - "sulfur": 1400 + "sulfur": 467 }, { "group": "melee", "which": null, "toolId": "2040726127", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 17.1, - "timeString": "17 sec", + "time": 8.4, + "timeString": "8 sec", "fuel": null, "sulfur": null }, @@ -142846,8 +146436,8 @@ "caption": "Throw", "quantity": 1, "quantityTypeId": null, - "time": 18, - "timeString": "18 sec", + "time": 12, + "timeString": "12 sec", "fuel": null, "sulfur": null }, @@ -142897,7 +146487,7 @@ "time": 131, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -142945,7 +146535,7 @@ "time": 23.52, "timeString": "23 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -142993,7 +146583,7 @@ "time": 7.32, "timeString": "7 sec", "fuel": null, - "sulfur": 1240 + "sulfur": 414 }, { "group": "guns", @@ -143041,7 +146631,7 @@ "time": 23.05, "timeString": "23 sec", "fuel": null, - "sulfur": 1600 + "sulfur": 534 }, { "group": "guns", @@ -143125,17 +146715,17 @@ "time": 24.4, "timeString": "24 sec", "fuel": null, - "sulfur": 1186 + "sulfur": 445 }, { "group": "melee", "which": null, "toolId": "-1966748496", "caption": null, - "quantity": 7, + "quantity": 1, "quantityTypeId": null, - "time": 206, - "timeString": "3 min 26 sec", + "time": 14, + "timeString": "14 sec", "fuel": null, "sulfur": null }, @@ -143144,10 +146734,10 @@ "which": null, "toolId": "-1966748496", "caption": "Throw", - "quantity": 4, + "quantity": 1, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 21, + "timeString": "21 sec", "fuel": null, "sulfur": null }, @@ -143158,8 +146748,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 18, - "timeString": "18 sec", + "time": 12, + "timeString": "12 sec", "fuel": null, "sulfur": null }, @@ -143170,11 +146760,35 @@ "caption": "Throw", "quantity": 1, "quantityTypeId": null, - "time": 45, - "timeString": "45 sec", + "time": 30, + "timeString": "30 sec", "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 123, + "quantityTypeId": null, + "time": 29.7, + "timeString": "29 sec", + "fuel": 123, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 107, + "quantityTypeId": "-1211166256", + "time": 10.6, + "timeString": "10 sec", + "fuel": null, + "sulfur": 356 + }, { "group": "explosive", "which": null, @@ -143221,17 +146835,17 @@ "time": 22.3, "timeString": "22 sec", "fuel": null, - "sulfur": 1426 + "sulfur": 535 }, { "group": "melee", "which": null, "toolId": "1491189398", "caption": null, - "quantity": 5, + "quantity": 1, "quantityTypeId": null, - "time": 254, - "timeString": "4 min 14 sec", + "time": 17.5, + "timeString": "17 sec", "fuel": null, "sulfur": null }, @@ -143242,8 +146856,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 45, - "timeString": "45 sec", + "time": 21, + "timeString": "21 sec", "fuel": null, "sulfur": null }, @@ -143254,8 +146868,8 @@ "caption": "Throw", "quantity": 1, "quantityTypeId": null, - "time": 90, - "timeString": "1 min 30 sec", + "time": 30, + "timeString": "30 sec", "fuel": null, "sulfur": null }, @@ -143341,7 +146955,7 @@ "time": 54, "timeString": "54 sec", "fuel": null, - "sulfur": 973 + "sulfur": 365 }, { "group": "guns", @@ -143377,17 +146991,17 @@ "time": 65.1, "timeString": "1 min 5 sec", "fuel": null, - "sulfur": 1533 + "sulfur": 575 }, { "group": "melee", "which": null, "toolId": "963906841", "caption": null, - "quantity": 18, + "quantity": 1, "quantityTypeId": null, - "time": 797, - "timeString": "13 min 17 sec", + "time": 52, + "timeString": "52 sec", "fuel": null, "sulfur": null }, @@ -143396,7 +147010,7 @@ "which": null, "toolId": "963906841", "caption": "Throw", - "quantity": 24, + "quantity": 2, "quantityTypeId": null, "time": null, "timeString": null, @@ -143410,8 +147024,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 20, - "timeString": "20 sec", + "time": 12.5, + "timeString": "12 sec", "fuel": null, "sulfur": null }, @@ -143422,8 +147036,8 @@ "caption": "Throw", "quantity": 1, "quantityTypeId": null, - "time": 36, - "timeString": "36 sec", + "time": 24, + "timeString": "24 sec", "fuel": null, "sulfur": null }, @@ -143432,10 +147046,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": 202, - "timeString": "3 min 22 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -143444,10 +147058,10 @@ "which": null, "toolId": "-1506397857", "caption": "Throw", - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": 450, - "timeString": "7 min 30 sec", + "time": 30, + "timeString": "30 sec", "fuel": null, "sulfur": null }, @@ -143458,8 +147072,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 25, - "timeString": "25 sec", + "time": 12.5, + "timeString": "12 sec", "fuel": null, "sulfur": null }, @@ -143470,8 +147084,8 @@ "caption": "Throw", "quantity": 1, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 40.5, + "timeString": "40 sec", "fuel": null, "sulfur": null }, @@ -143569,7 +147183,7 @@ "time": 39.6, "timeString": "39 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -143629,7 +147243,7 @@ "time": 42.675, "timeString": "42 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -143638,8 +147252,8 @@ "caption": "Pistol Bullet", "quantity": 134, "quantityTypeId": "785728077", - "time": 32.8, - "timeString": "32 sec", + "time": 28.9, + "timeString": "28 sec", "fuel": null, "sulfur": 335 }, @@ -143662,10 +147276,10 @@ "caption": "HV Pistol Ammo", "quantity": 134, "quantityTypeId": "-1691396643", - "time": 32.8, - "timeString": "32 sec", + "time": 28.9, + "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "guns", @@ -143720,10 +147334,10 @@ "which": null, "toolId": "-1583967946", "caption": null, - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": 54.2, - "timeString": "54 sec", + "time": 24.3, + "timeString": "24 sec", "fuel": null, "sulfur": null }, @@ -143732,10 +147346,10 @@ "which": null, "toolId": "-1583967946", "caption": "Throw", - "quantity": 3, + "quantity": 2, "quantityTypeId": null, - "time": 90, - "timeString": "1 min 30 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -143744,10 +147358,10 @@ "which": null, "toolId": "171931394", "caption": null, - "quantity": 5, + "quantity": 1, "quantityTypeId": null, - "time": 99.4, - "timeString": "1 min 39 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": null }, @@ -143756,7 +147370,7 @@ "which": null, "toolId": "171931394", "caption": "Throw", - "quantity": 5, + "quantity": 2, "quantityTypeId": null, "time": null, "timeString": null, @@ -143768,10 +147382,10 @@ "which": null, "toolId": "1602646136", "caption": null, - "quantity": 4, + "quantity": 1, "quantityTypeId": null, - "time": 55.5, - "timeString": "55 sec", + "time": 18, + "timeString": "18 sec", "fuel": null, "sulfur": null }, @@ -143782,8 +147396,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 16, - "timeString": "16 sec", + "time": 12, + "timeString": "12 sec", "fuel": null, "sulfur": null }, @@ -143794,8 +147408,8 @@ "caption": "Throw", "quantity": 1, "quantityTypeId": null, - "time": 30, - "timeString": "30 sec", + "time": 21, + "timeString": "21 sec", "fuel": null, "sulfur": null }, @@ -143806,8 +147420,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 15, - "timeString": "15 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -143818,8 +147432,8 @@ "caption": "Throw", "quantity": 1, "quantityTypeId": null, - "time": 45, - "timeString": "45 sec", + "time": 30, + "timeString": "30 sec", "fuel": null, "sulfur": null }, @@ -143857,18 +147471,18 @@ "time": 33.13, "timeString": "33 sec", "fuel": null, - "sulfur": 1426 + "sulfur": 535 }, { "group": "melee", "which": null, "toolId": "795236088", "caption": null, - "quantity": 47, + "quantity": 3, "quantityTypeId": null, - "time": 1606, - "timeString": "26 min 46 sec", - "fuel": 47, + "time": 106, + "timeString": "1 min 46 sec", + "fuel": 3, "sulfur": null }, { @@ -143876,11 +147490,11 @@ "which": null, "toolId": "795236088", "caption": "Lit", - "quantity": 86, + "quantity": 11, "quantityTypeId": null, - "time": 865, - "timeString": "14 min 25 sec", - "fuel": 86, + "time": 107.5, + "timeString": "1 min 47 sec", + "fuel": 11, "sulfur": null }, { @@ -143888,10 +147502,10 @@ "which": null, "toolId": "1540934679", "caption": null, - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": 74, - "timeString": "1 min 14 sec", + "time": 24, + "timeString": "24 sec", "fuel": null, "sulfur": null } @@ -143938,12 +147552,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 220, + "quantity": 110, "quantityTypeId": null, - "time": 1314, - "timeString": "21 min 54 sec", - "fuel": 55660, - "sulfur": 134200 + "time": 654, + "timeString": "10 min 54 sec", + "fuel": 8250, + "sulfur": 33000 }, { "group": "explosive", @@ -143967,7 +147581,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -144111,7 +147725,7 @@ "time": 11.4649, "timeString": "11 sec", "fuel": null, - "sulfur": 1100 + "sulfur": 367 }, { "group": "explosive", @@ -144171,7 +147785,7 @@ "time": 84.2, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -144567,7 +148181,7 @@ "time": 16.0125, "timeString": "16 sec", "fuel": null, - "sulfur": 920 + "sulfur": 345 }, { "group": "guns", @@ -144651,7 +148265,7 @@ "time": 5.875, "timeString": "5 sec", "fuel": null, - "sulfur": 960 + "sulfur": 320 }, { "group": "melee", @@ -144723,7 +148337,7 @@ "time": 90.8, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "guns", @@ -144771,7 +148385,7 @@ "time": 15.92, "timeString": "15 sec", "fuel": null, - "sulfur": 1380 + "sulfur": 460 }, { "group": "guns", @@ -144819,7 +148433,7 @@ "time": 5.04, "timeString": "5 sec", "fuel": null, - "sulfur": 860 + "sulfur": 287 }, { "group": "guns", @@ -144867,7 +148481,7 @@ "time": 15.6, "timeString": "15 sec", "fuel": null, - "sulfur": 1100 + "sulfur": 367 }, { "group": "guns", @@ -144951,7 +148565,7 @@ "time": 18.11, "timeString": "18 sec", "fuel": null, - "sulfur": 826 + "sulfur": 310 }, { "group": "melee", @@ -145001,6 +148615,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1375, + "quantityTypeId": null, + "time": 168, + "timeString": "2 min 48 sec", + "fuel": 1375, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 74, + "quantityTypeId": "-1211166256", + "time": 7.3, + "timeString": "7 sec", + "fuel": null, + "sulfur": 246 + }, { "group": "explosive", "which": null, @@ -145047,7 +148685,7 @@ "time": 15.1, "timeString": "15 sec", "fuel": null, - "sulfur": 986 + "sulfur": 370 }, { "group": "guns", @@ -145191,7 +148829,7 @@ "time": 36.15, "timeString": "36 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -145227,7 +148865,7 @@ "time": 42.675, "timeString": "42 sec", "fuel": null, - "sulfur": 1053 + "sulfur": 395 }, { "group": "melee", @@ -145284,8 +148922,8 @@ "caption": null, "quantity": 3, "quantityTypeId": null, - "time": 186, - "timeString": "3 min 6 sec", + "time": 140, + "timeString": "2 min 20 sec", "fuel": null, "sulfur": null }, @@ -145419,7 +149057,7 @@ "time": 26.7, "timeString": "26 sec", "fuel": null, - "sulfur": 920 + "sulfur": 345 }, { "group": "guns", @@ -145479,7 +149117,7 @@ "time": 28.8, "timeString": "28 sec", "fuel": null, - "sulfur": 1380 + "sulfur": 460 }, { "group": "guns", @@ -145500,8 +149138,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 87, "quantityTypeId": "51984655", - "time": 20.3, - "timeString": "20 sec", + "time": 16.4, + "timeString": "16 sec", "fuel": null, "sulfur": 725 }, @@ -145515,7 +149153,7 @@ "time": 20.8, "timeString": "20 sec", "fuel": null, - "sulfur": 1226 + "sulfur": 460 }, { "group": "guns", @@ -145731,7 +149369,7 @@ "time": 21.1, "timeString": "21 sec", "fuel": null, - "sulfur": 986 + "sulfur": 370 }, { "group": "melee", @@ -145828,8 +149466,8 @@ "quantityTypeId": null, "time": 6.5765136257142, "timeString": "6 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -145853,7 +149491,7 @@ "time": 88, "timeString": "1 min 28 sec", "fuel": null, - "sulfur": 300 + "sulfur": 180 }, { "group": "melee", @@ -145997,7 +149635,7 @@ "time": 19.0641, "timeString": "19 sec", "fuel": null, - "sulfur": 1600 + "sulfur": 534 }, { "group": "explosive", @@ -146057,7 +149695,7 @@ "time": 122.9, "timeString": "2 min 2 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "melee", @@ -146345,7 +149983,7 @@ "time": 25.075, "timeString": "25 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -146429,7 +150067,7 @@ "time": 15, "timeString": "15 sec", "fuel": null, - "sulfur": 1400 + "sulfur": 467 }, { "group": "melee", @@ -146501,7 +150139,7 @@ "time": 131, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -146549,7 +150187,7 @@ "time": 23.52, "timeString": "23 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -146597,7 +150235,7 @@ "time": 7.32, "timeString": "7 sec", "fuel": null, - "sulfur": 1240 + "sulfur": 414 }, { "group": "guns", @@ -146645,7 +150283,7 @@ "time": 23.05, "timeString": "23 sec", "fuel": null, - "sulfur": 1600 + "sulfur": 534 }, { "group": "guns", @@ -146729,7 +150367,7 @@ "time": 24.4, "timeString": "24 sec", "fuel": null, - "sulfur": 1186 + "sulfur": 445 }, { "group": "melee", @@ -146779,6 +150417,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 82, + "quantityTypeId": null, + "time": 25.6, + "timeString": "25 sec", + "fuel": 82, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 107, + "quantityTypeId": "-1211166256", + "time": 10.6, + "timeString": "10 sec", + "fuel": null, + "sulfur": 356 + }, { "group": "explosive", "which": null, @@ -146825,7 +150487,7 @@ "time": 22.3, "timeString": "22 sec", "fuel": null, - "sulfur": 1426 + "sulfur": 535 }, { "group": "melee", @@ -146945,7 +150607,7 @@ "time": 54, "timeString": "54 sec", "fuel": null, - "sulfur": 973 + "sulfur": 365 }, { "group": "guns", @@ -146981,7 +150643,7 @@ "time": 65.1, "timeString": "1 min 5 sec", "fuel": null, - "sulfur": 1533 + "sulfur": 575 }, { "group": "melee", @@ -147038,8 +150700,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 27, - "timeString": "27 sec", + "time": 14, + "timeString": "14 sec", "fuel": null, "sulfur": null }, @@ -147173,7 +150835,7 @@ "time": 39.6, "timeString": "39 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -147233,7 +150895,7 @@ "time": 42.675, "timeString": "42 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -147242,8 +150904,8 @@ "caption": "Pistol Bullet", "quantity": 134, "quantityTypeId": "785728077", - "time": 32.8, - "timeString": "32 sec", + "time": 28.9, + "timeString": "28 sec", "fuel": null, "sulfur": 335 }, @@ -147254,8 +150916,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 51, "quantityTypeId": "51984655", - "time": 37.8, - "timeString": "37 sec", + "time": 33.9, + "timeString": "33 sec", "fuel": null, "sulfur": 425 }, @@ -147266,10 +150928,10 @@ "caption": "HV Pistol Ammo", "quantity": 134, "quantityTypeId": "-1691396643", - "time": 32.8, - "timeString": "32 sec", + "time": 28.9, + "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "guns", @@ -147461,7 +151123,7 @@ "time": 33.13, "timeString": "33 sec", "fuel": null, - "sulfur": 1426 + "sulfur": 535 }, { "group": "melee", @@ -147559,7 +151221,7 @@ "time": 190, "timeString": "3 min 10 sec", "fuel": null, - "sulfur": 640 + "sulfur": 384 }, { "group": "explosive", @@ -147806,10 +151468,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 24, + "quantity": 23, "quantityTypeId": null, - "time": 1690, - "timeString": "28 min 10 sec", + "time": 1272, + "timeString": "21 min 12 sec", "fuel": null, "sulfur": null }, @@ -147956,8 +151618,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -147981,7 +151643,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -148125,7 +151787,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -148185,7 +151847,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -148473,7 +152135,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -148557,7 +152219,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -148629,7 +152291,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -148677,7 +152339,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -148725,7 +152387,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -148773,7 +152435,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -148857,7 +152519,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -148907,6 +152569,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -148953,7 +152639,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -149073,7 +152759,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -149109,7 +152795,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -149166,8 +152852,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -149301,7 +152987,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -149361,7 +153047,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -149382,8 +153068,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -149397,7 +153083,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -149589,7 +153275,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -149674,8 +153360,8 @@ "quantityTypeId": null, "time": 32.882568128571, "timeString": "32 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -149699,7 +153385,7 @@ "time": 196, "timeString": "3 min 16 sec", "fuel": null, - "sulfur": 660 + "sulfur": 396 }, { "group": "melee", @@ -149843,7 +153529,7 @@ "time": 108.6538, "timeString": "1 min 48 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "explosive", @@ -149903,7 +153589,7 @@ "time": 627.9, "timeString": "10 min 27 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "melee", @@ -150191,7 +153877,7 @@ "time": 131.4, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -150275,7 +153961,7 @@ "time": 75.25, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 6960 + "sulfur": 2321 }, { "group": "melee", @@ -150347,7 +154033,7 @@ "time": 667, "timeString": "11 min 7 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -150395,7 +154081,7 @@ "time": 121.96, "timeString": "2 min 1 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -150443,7 +154129,7 @@ "time": 58.98, "timeString": "58 sec", "fuel": null, - "sulfur": 6160 + "sulfur": 2054 }, { "group": "guns", @@ -150491,7 +154177,7 @@ "time": 128.25, "timeString": "2 min 8 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "guns", @@ -150575,7 +154261,7 @@ "time": 131.56, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -150625,6 +154311,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 407, + "quantityTypeId": null, + "time": 64.9, + "timeString": "1 min 4 sec", + "fuel": 407, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 534, + "quantityTypeId": "-1211166256", + "time": 56.7, + "timeString": "56 sec", + "fuel": null, + "sulfur": 1778 + }, { "group": "explosive", "which": null, @@ -150671,7 +154381,7 @@ "time": 119.6, "timeString": "1 min 59 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -150791,7 +154501,7 @@ "time": 270.45, "timeString": "4 min 30 sec", "fuel": null, - "sulfur": 4852 + "sulfur": 1820 }, { "group": "guns", @@ -150827,7 +154537,7 @@ "time": 328.9, "timeString": "5 min 28 sec", "fuel": null, - "sulfur": 7625 + "sulfur": 2860 }, { "group": "melee", @@ -150882,10 +154592,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 10, + "quantity": 6, "quantityTypeId": null, - "time": 676, - "timeString": "11 min 16 sec", + "time": 339, + "timeString": "5 min 39 sec", "fuel": null, "sulfur": null }, @@ -151019,7 +154729,7 @@ "time": 209.6, "timeString": "3 min 29 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -151079,7 +154789,7 @@ "time": 218.3, "timeString": "3 min 38 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -151088,8 +154798,8 @@ "caption": "Pistol Bullet", "quantity": 667, "quantityTypeId": "785728077", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, "sulfur": 1668 }, @@ -151100,8 +154810,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 253, "quantityTypeId": "51984655", - "time": 89.2, - "timeString": "1 min 29 sec", + "time": 81.4, + "timeString": "1 min 21 sec", "fuel": null, "sulfur": 2107 }, @@ -151112,10 +154822,10 @@ "caption": "HV Pistol Ammo", "quantity": 667, "quantityTypeId": "-1691396643", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, - "sulfur": 8891 + "sulfur": 3335 }, { "group": "guns", @@ -151307,7 +155017,7 @@ "time": 169.91, "timeString": "2 min 49 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -151405,7 +155115,7 @@ "time": 46, "timeString": "46 sec", "fuel": null, - "sulfur": 160 + "sulfur": 96 }, { "group": "explosive", @@ -151654,8 +155364,8 @@ "caption": null, "quantity": 7, "quantityTypeId": null, - "time": 506, - "timeString": "8 min 26 sec", + "time": 381, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": null }, @@ -151802,8 +155512,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -151827,7 +155537,7 @@ "time": 28, "timeString": "28 sec", "fuel": null, - "sulfur": 100 + "sulfur": 60 }, { "group": "melee", @@ -151971,7 +155681,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -152031,7 +155741,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -152427,7 +156137,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -152511,7 +156221,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -152583,7 +156293,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -152631,7 +156341,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -152679,7 +156389,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -152727,7 +156437,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -152811,7 +156521,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -152861,6 +156571,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -152907,7 +156641,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "guns", @@ -153051,7 +156785,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -153087,7 +156821,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -153144,8 +156878,8 @@ "caption": null, "quantity": 3, "quantityTypeId": null, - "time": 169, - "timeString": "2 min 49 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -153279,7 +157013,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -153339,7 +157073,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -153375,7 +157109,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -153591,7 +157325,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -153688,8 +157422,8 @@ "quantityTypeId": null, "time": 1.2330963048214, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -153713,7 +157447,7 @@ "time": 70, "timeString": "1 min 10 sec", "fuel": null, - "sulfur": 240 + "sulfur": 144 }, { "group": "melee", @@ -153857,7 +157591,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -153917,7 +157651,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -154205,7 +157939,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -154289,7 +158023,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -154361,7 +158095,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -154409,7 +158143,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -154457,7 +158191,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -154505,7 +158239,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -154589,7 +158323,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -154639,6 +158373,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 16, + "quantityTypeId": null, + "time": 19, + "timeString": "19 sec", + "fuel": 16, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -154685,7 +158443,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -154805,7 +158563,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -154841,7 +158599,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -154896,10 +158654,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 4, + "quantity": 3, "quantityTypeId": null, - "time": 253, - "timeString": "4 min 13 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -155033,7 +158791,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -155093,7 +158851,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -155102,8 +158860,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -155126,10 +158884,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -155321,7 +159079,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -155406,8 +159164,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -155431,7 +159189,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -155575,7 +159333,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -155635,7 +159393,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -155923,7 +159681,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -156007,7 +159765,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -156079,7 +159837,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -156127,7 +159885,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -156175,7 +159933,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -156223,7 +159981,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -156307,7 +160065,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -156357,6 +160115,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -156403,7 +160185,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -156523,7 +160305,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -156559,7 +160341,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -156616,8 +160398,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 34, - "timeString": "34 sec", + "time": 17, + "timeString": "17 sec", "fuel": null, "sulfur": null }, @@ -156751,7 +160533,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -156811,7 +160593,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -156820,8 +160602,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -156844,10 +160626,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -157039,7 +160821,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -157124,8 +160906,8 @@ "quantityTypeId": null, "time": 1.2330963048214, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -157149,7 +160931,7 @@ "time": 70, "timeString": "1 min 10 sec", "fuel": null, - "sulfur": 240 + "sulfur": 144 }, { "group": "melee", @@ -157293,7 +161075,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -157353,7 +161135,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -157641,7 +161423,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -157725,7 +161507,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -157797,7 +161579,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -157845,7 +161627,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -157893,7 +161675,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -157941,7 +161723,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -158025,7 +161807,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -158075,6 +161857,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 16, + "quantityTypeId": null, + "time": 19, + "timeString": "19 sec", + "fuel": 16, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -158121,7 +161927,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -158241,7 +162047,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -158277,7 +162083,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -158332,10 +162138,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 4, + "quantity": 3, "quantityTypeId": null, - "time": 253, - "timeString": "4 min 13 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -158469,7 +162275,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -158529,7 +162335,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -158538,8 +162344,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -158562,10 +162368,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -158757,7 +162563,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -158842,8 +162648,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -158867,7 +162673,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -159011,7 +162817,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -159071,7 +162877,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -159359,7 +163165,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -159443,7 +163249,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -159515,7 +163321,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -159563,7 +163369,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -159611,7 +163417,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -159659,7 +163465,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -159743,7 +163549,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -159793,6 +163599,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -159839,7 +163669,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -159959,7 +163789,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -159995,7 +163825,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -160052,8 +163882,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -160187,7 +164017,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -160247,7 +164077,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -160283,7 +164113,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -160475,7 +164305,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -160560,8 +164390,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -160585,7 +164415,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -160729,7 +164559,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -160789,7 +164619,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -161077,7 +164907,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -161161,7 +164991,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -161233,7 +165063,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -161281,7 +165111,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -161329,7 +165159,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -161377,7 +165207,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -161461,7 +165291,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -161511,6 +165341,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -161557,7 +165411,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -161677,7 +165531,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -161713,7 +165567,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -161770,8 +165624,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -161905,7 +165759,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -161965,7 +165819,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -161986,8 +165840,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -162001,7 +165855,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -162193,7 +166047,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -162278,8 +166132,8 @@ "quantityTypeId": null, "time": 1.2330963048214, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -162303,7 +166157,7 @@ "time": 70, "timeString": "1 min 10 sec", "fuel": null, - "sulfur": 240 + "sulfur": 144 }, { "group": "melee", @@ -162447,7 +166301,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -162507,7 +166361,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -162795,7 +166649,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -162879,7 +166733,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -162951,7 +166805,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -162999,7 +166853,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -163047,7 +166901,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -163095,7 +166949,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -163179,7 +167033,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -163229,6 +167083,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 16, + "quantityTypeId": null, + "time": 19, + "timeString": "19 sec", + "fuel": 16, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -163275,7 +167153,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -163395,7 +167273,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -163431,7 +167309,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -163486,10 +167364,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 4, + "quantity": 3, "quantityTypeId": null, - "time": 253, - "timeString": "4 min 13 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -163623,7 +167501,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -163683,7 +167561,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -163692,8 +167570,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -163716,10 +167594,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -163911,7 +167789,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -163992,12 +167870,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 240, + "quantity": 120, "quantityTypeId": null, - "time": 1434, - "timeString": "23 min 54 sec", - "fuel": 60720, - "sulfur": 146400 + "time": 714, + "timeString": "11 min 54 sec", + "fuel": 9000, + "sulfur": 36000 }, { "group": "explosive", @@ -164021,7 +167899,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -164165,7 +168043,7 @@ "time": 12.1314, "timeString": "12 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "explosive", @@ -164225,7 +168103,7 @@ "time": 92.6, "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "melee", @@ -164621,7 +168499,7 @@ "time": 19.475, "timeString": "19 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -164705,7 +168583,7 @@ "time": 6.5, "timeString": "6 sec", "fuel": null, - "sulfur": 1060 + "sulfur": 354 }, { "group": "melee", @@ -164777,7 +168655,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -164825,7 +168703,7 @@ "time": 16.64, "timeString": "16 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -164873,7 +168751,7 @@ "time": 5.52, "timeString": "5 sec", "fuel": null, - "sulfur": 940 + "sulfur": 313 }, { "group": "guns", @@ -164921,7 +168799,7 @@ "time": 16.475, "timeString": "16 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "guns", @@ -165005,7 +168883,7 @@ "time": 18.86, "timeString": "18 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -165055,6 +168933,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1500, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": 1500, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 80, + "quantityTypeId": "-1211166256", + "time": 7.9, + "timeString": "7 sec", + "fuel": null, + "sulfur": 266 + }, { "group": "explosive", "which": null, @@ -165101,7 +169003,7 @@ "time": 15.7, "timeString": "15 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "guns", @@ -165245,7 +169147,7 @@ "time": 40.5, "timeString": "40 sec", "fuel": null, - "sulfur": 733 + "sulfur": 275 }, { "group": "guns", @@ -165281,7 +169183,7 @@ "time": 47.125, "timeString": "47 sec", "fuel": null, - "sulfur": 1146 + "sulfur": 430 }, { "group": "melee", @@ -165338,8 +169240,8 @@ "caption": null, "quantity": 3, "quantityTypeId": null, - "time": 202, - "timeString": "3 min 22 sec", + "time": 152, + "timeString": "2 min 32 sec", "fuel": null, "sulfur": null }, @@ -165473,7 +169375,7 @@ "time": 30.35, "timeString": "30 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -165533,7 +169435,7 @@ "time": 29.85, "timeString": "29 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -165542,8 +169444,8 @@ "caption": "Pistol Bullet", "quantity": 100, "quantityTypeId": "785728077", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 250 }, @@ -165566,10 +169468,10 @@ "caption": "HV Pistol Ammo", "quantity": 100, "quantityTypeId": "-1691396643", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -165785,7 +169687,7 @@ "time": 21.88, "timeString": "21 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -165882,8 +169784,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -165907,7 +169809,7 @@ "time": 136, "timeString": "2 min 16 sec", "fuel": null, - "sulfur": 460 + "sulfur": 276 }, { "group": "melee", @@ -166051,7 +169953,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -166111,7 +170013,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -166399,7 +170301,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -166483,7 +170385,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -166555,7 +170457,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -166603,7 +170505,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -166651,7 +170553,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -166699,7 +170601,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -166783,7 +170685,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -166833,6 +170735,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -166879,7 +170805,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -166999,7 +170925,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -167035,7 +170961,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -167092,8 +171018,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 34, - "timeString": "34 sec", + "time": 17, + "timeString": "17 sec", "fuel": null, "sulfur": null }, @@ -167227,7 +171153,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -167287,7 +171213,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -167296,8 +171222,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -167320,10 +171246,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -167515,7 +171441,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -167600,8 +171526,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -167625,7 +171551,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -167769,7 +171695,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -167829,7 +171755,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -168117,7 +172043,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -168201,7 +172127,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -168273,7 +172199,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -168321,7 +172247,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -168369,7 +172295,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -168417,7 +172343,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -168501,7 +172427,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -168551,6 +172477,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -168597,7 +172547,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -168717,7 +172667,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -168753,7 +172703,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -168810,8 +172760,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -168945,7 +172895,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -169005,7 +172955,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -169014,8 +172964,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -169038,10 +172988,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -169233,7 +173183,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -169314,12 +173264,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 4, + "quantity": 2, "quantityTypeId": null, - "time": 18, - "timeString": "18 sec", - "fuel": 1012, - "sulfur": 2440 + "time": 6, + "timeString": "6 sec", + "fuel": 150, + "sulfur": 600 }, { "group": "explosive", @@ -169343,7 +173293,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -169487,7 +173437,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -169547,7 +173497,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -169943,7 +173893,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -170027,7 +173977,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -170099,7 +174049,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -170147,7 +174097,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -170195,7 +174145,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -170243,7 +174193,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -170327,7 +174277,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -170377,6 +174327,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 25, + "quantityTypeId": null, + "time": 2.4, + "timeString": "2 sec", + "fuel": 25, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -170423,7 +174397,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -170567,7 +174541,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -170603,7 +174577,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -170660,8 +174634,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 3, + "timeString": "3 sec", "fuel": null, "sulfur": null }, @@ -170795,7 +174769,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -170855,7 +174829,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -170891,7 +174865,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -171107,7 +175081,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -171204,8 +175178,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -171229,7 +175203,7 @@ "time": 22, "timeString": "22 sec", "fuel": null, - "sulfur": 80 + "sulfur": 48 }, { "group": "melee", @@ -171373,7 +175347,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -171433,7 +175407,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -171721,7 +175695,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -171805,7 +175779,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -171877,7 +175851,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -171925,7 +175899,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -171973,7 +175947,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -172021,7 +175995,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -172105,7 +176079,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -172155,6 +176129,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -172201,7 +176199,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -172321,7 +176319,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -172357,7 +176355,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -172414,8 +176412,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 4, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -172549,7 +176547,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -172609,7 +176607,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -172645,7 +176643,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -172837,7 +176835,1749 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 + }, + { + "group": "melee", + "which": null, + "toolId": "795236088", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 53, + "timeString": "53 sec", + "fuel": 2, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "795236088", + "caption": "Lit", + "quantity": 5, + "quantityTypeId": null, + "time": 48.2, + "timeString": "48 sec", + "fuel": 5, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1540934679", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 12, + "timeString": "12 sec", + "fuel": null, + "sulfur": null + } + ], + "1619039771": [ + { + "group": "explosive", + "which": null, + "toolId": "-1843426638", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 0, + "timeString": "0 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "349762871", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "-742865266", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 1, + "timeString": "1 sec", + "fuel": 30, + "sulfur": 1400 + }, + { + "group": "explosive", + "which": null, + "toolId": "1638322904", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 1.6441284064285, + "timeString": "1 sec", + "fuel": 75, + "sulfur": 300 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1841918730", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 12, + "timeString": "12 sec", + "fuel": null, + "sulfur": 600 + }, + { + "group": "torpedo", + "which": null, + "toolId": "-1671551935", + "caption": null, + "quantity": 5, + "quantityTypeId": null, + "time": 28, + "timeString": "28 sec", + "fuel": null, + "sulfur": 60 + }, + { + "group": "melee", + "which": null, + "toolId": "-2073432256", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 7, + "timeString": "7 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-2073432256", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 30, + "timeString": "30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "1248356124", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 10, + "timeString": "10 sec", + "fuel": 60, + "sulfur": 2200 + }, + { + "group": "melee", + "which": null, + "toolId": "-196667575", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 14, + "timeString": "14 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1488979457", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 2.1, + "timeString": "2 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1488979457", + "caption": "Workbench Refill", + "quantity": 1, + "quantityTypeId": null, + "time": 2.1, + "timeString": "2 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1536855921", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 20, + "timeString": "20 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1536855921", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 15, + "timeString": "15 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "5.56 Rifle Ammo", + "quantity": 20, + "quantityTypeId": "-1211166256", + "time": 2.5327, + "timeString": "2 sec", + "fuel": null, + "sulfur": 67 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 10, + "quantityTypeId": "-1321651331", + "time": 1.1997, + "timeString": "1 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 13, + "quantityTypeId": "605467368", + "time": 1.5996, + "timeString": "1 sec", + "fuel": null, + "sulfur": 163 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 20, + "quantityTypeId": "1712070256", + "time": 2.5327, + "timeString": "2 sec", + "fuel": null, + "sulfur": 133 + }, + { + "group": "explosive", + "which": null, + "toolId": "1840822026", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 6.15, + "timeString": "6 sec", + "fuel": null, + "sulfur": 240 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "5.56 Rifle Ammo", + "quantity": 13, + "quantityTypeId": "-1211166256", + "time": 30.3, + "timeString": "30 sec", + "fuel": null, + "sulfur": 43 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 8, + "quantityTypeId": "-1321651331", + "time": 15.2, + "timeString": "15 sec", + "fuel": null, + "sulfur": 200 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 8, + "quantityTypeId": "605467368", + "time": 15.2, + "timeString": "15 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 13, + "quantityTypeId": "1712070256", + "time": 30.3, + "timeString": "30 sec", + "fuel": null, + "sulfur": 87 + }, + { + "group": "melee", + "which": null, + "toolId": "1711033574", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 11.9, + "timeString": "11 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1711033574", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 25.5, + "timeString": "25 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1814288539", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 9.1, + "timeString": "9 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1814288539", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 30, + "timeString": "30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "14241751", + "caption": "Hunting Bow", + "quantity": 3, + "quantityTypeId": null, + "time": 14.5, + "timeString": "14 sec", + "fuel": 15, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Fire Arrow", + "quantity": 3, + "quantityTypeId": "14241751", + "time": 14.5, + "timeString": "14 sec", + "fuel": 15, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1104520648", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 3.4, + "timeString": "3 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1978999529", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 8, + "timeString": "8 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1978999529", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 10.5, + "timeString": "10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Fire Arrow", + "quantity": 3, + "quantityTypeId": "14241751", + "time": 23.5, + "timeString": "23 sec", + "fuel": 15, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Fire Arrow", + "quantity": 3, + "quantityTypeId": "14241751", + "time": 19.7, + "timeString": "19 sec", + "fuel": 15, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "Handmade Shell", + "quantity": 6, + "quantityTypeId": "588596902", + "time": 12.5, + "timeString": "12 sec", + "fuel": null, + "sulfur": 30 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Buckshot", + "quantity": 5, + "quantityTypeId": "-1685290200", + "time": 12, + "timeString": "12 sec", + "fuel": null, + "sulfur": 50 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Incendiary Shell", + "quantity": 1, + "quantityTypeId": "-1036635990", + "time": 12.5, + "timeString": "12 sec", + "fuel": null, + "sulfur": 20 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Slug", + "quantity": 13, + "quantityTypeId": "-727717969", + "time": 36, + "timeString": "36 sec", + "fuel": null, + "sulfur": 130 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "Handmade Shell", + "quantity": 6, + "quantityTypeId": "588596902", + "time": 14.08, + "timeString": "14 sec", + "fuel": null, + "sulfur": 30 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Buckshot", + "quantity": 5, + "quantityTypeId": "-1685290200", + "time": 11.4, + "timeString": "11 sec", + "fuel": null, + "sulfur": 50 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Incendiary Shell", + "quantity": 1, + "quantityTypeId": "-1036635990", + "time": 13.18, + "timeString": "13 sec", + "fuel": null, + "sulfur": 20 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Slug", + "quantity": 13, + "quantityTypeId": "-727717969", + "time": 32.84, + "timeString": "32 sec", + "fuel": null, + "sulfur": 130 + }, + { + "group": "explosive", + "which": null, + "toolId": "143803535", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 4.9, + "timeString": "4 sec", + "fuel": null, + "sulfur": 120 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1215753368", + "caption": null, + "quantity": 17, + "quantityTypeId": null, + "time": 19.1, + "timeString": "19 sec", + "fuel": 17, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "Pistol Bullet", + "quantity": 25, + "quantityTypeId": "785728077", + "time": 5.4875, + "timeString": "5 sec", + "fuel": null, + "sulfur": 63 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "Incendiary Pistol Bullet", + "quantity": 11, + "quantityTypeId": "51984655", + "time": 26.125, + "timeString": "26 sec", + "fuel": null, + "sulfur": 92 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "HV Pistol Ammo", + "quantity": 25, + "quantityTypeId": "-1691396643", + "time": 5.4875, + "timeString": "5 sec", + "fuel": null, + "sulfur": 125 + }, + { + "group": "guns", + "which": null, + "toolId": "-1123473824", + "caption": "40mm Shotgun Round", + "quantity": 4, + "quantityTypeId": "1055319033", + "time": 1.2, + "timeString": "1 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1252059217", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 7.2, + "timeString": "7 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1252059217", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 21, + "timeString": "21 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "5.56 Rifle Ammo", + "quantity": 18, + "quantityTypeId": "-1211166256", + "time": 2.125, + "timeString": "2 sec", + "fuel": null, + "sulfur": 60 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 10, + "quantityTypeId": "-1321651331", + "time": 1.125, + "timeString": "1 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 11, + "quantityTypeId": "605467368", + "time": 1.25, + "timeString": "1 sec", + "fuel": null, + "sulfur": 138 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 18, + "quantityTypeId": "1712070256", + "time": 2.125, + "timeString": "2 sec", + "fuel": null, + "sulfur": 120 + }, + { + "group": "melee", + "which": null, + "toolId": "2040726127", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 4.2, + "timeString": "4 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "2040726127", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 6, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "5.56 Rifle Ammo", + "quantity": 13, + "quantityTypeId": "-1211166256", + "time": 32, + "timeString": "32 sec", + "fuel": null, + "sulfur": 43 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 8, + "quantityTypeId": "-1321651331", + "time": 18.6, + "timeString": "18 sec", + "fuel": null, + "sulfur": 200 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 8, + "quantityTypeId": "605467368", + "time": 18.6, + "timeString": "18 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 13, + "quantityTypeId": "1712070256", + "time": 32, + "timeString": "32 sec", + "fuel": null, + "sulfur": 87 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "5.56 Rifle Ammo", + "quantity": 25, + "quantityTypeId": "-1211166256", + "time": 2.88, + "timeString": "2 sec", + "fuel": null, + "sulfur": 83 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 12, + "quantityTypeId": "-1321651331", + "time": 1.32, + "timeString": "1 sec", + "fuel": null, + "sulfur": 300 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 16, + "quantityTypeId": "605467368", + "time": 1.8, + "timeString": "1 sec", + "fuel": null, + "sulfur": 200 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 25, + "quantityTypeId": "1712070256", + "time": 2.88, + "timeString": "2 sec", + "fuel": null, + "sulfur": 167 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "5.56 Rifle Ammo", + "quantity": 16, + "quantityTypeId": "-1211166256", + "time": 1.8, + "timeString": "1 sec", + "fuel": null, + "sulfur": 53 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 9, + "quantityTypeId": "-1321651331", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 225 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 10, + "quantityTypeId": "605467368", + "time": 1.08, + "timeString": "1 sec", + "fuel": null, + "sulfur": 125 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 16, + "quantityTypeId": "1712070256", + "time": 1.8, + "timeString": "1 sec", + "fuel": null, + "sulfur": 107 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "5.56 Rifle Ammo", + "quantity": 20, + "quantityTypeId": "-1211166256", + "time": 3.325, + "timeString": "3 sec", + "fuel": null, + "sulfur": 67 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 10, + "quantityTypeId": "-1321651331", + "time": 1.575, + "timeString": "1 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 13, + "quantityTypeId": "605467368", + "time": 2.1, + "timeString": "2 sec", + "fuel": null, + "sulfur": 163 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 20, + "quantityTypeId": "1712070256", + "time": 3.325, + "timeString": "3 sec", + "fuel": null, + "sulfur": 133 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "Handmade Shell", + "quantity": 7, + "quantityTypeId": "588596902", + "time": 7.3, + "timeString": "7 sec", + "fuel": null, + "sulfur": 35 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Buckshot", + "quantity": 6, + "quantityTypeId": "-1685290200", + "time": 1.5, + "timeString": "1 sec", + "fuel": null, + "sulfur": 60 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Incendiary Shell", + "quantity": 1, + "quantityTypeId": "-1036635990", + "time": 12.5, + "timeString": "12 sec", + "fuel": null, + "sulfur": 20 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Slug", + "quantity": 16, + "quantityTypeId": "-727717969", + "time": 15.5, + "timeString": "15 sec", + "fuel": null, + "sulfur": 160 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "Pistol Bullet", + "quantity": 23, + "quantityTypeId": "785728077", + "time": 5.54, + "timeString": "5 sec", + "fuel": null, + "sulfur": 58 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "Incendiary Pistol Bullet", + "quantity": 10, + "quantityTypeId": "51984655", + "time": 26.35, + "timeString": "26 sec", + "fuel": null, + "sulfur": 83 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "HV Pistol Ammo", + "quantity": 23, + "quantityTypeId": "-1691396643", + "time": 5.54, + "timeString": "5 sec", + "fuel": null, + "sulfur": 115 + }, + { + "group": "melee", + "which": null, + "toolId": "-1966748496", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 8, + "timeString": "8 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1966748496", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 10.5, + "timeString": "10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1137865085", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 6, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1137865085", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 15, + "timeString": "15 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, + { + "group": "explosive", + "which": null, + "toolId": "1556365900", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 50, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "Pistol Bullet", + "quantity": 27, + "quantityTypeId": "785728077", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 68 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "Incendiary Pistol Bullet", + "quantity": 11, + "quantityTypeId": "51984655", + "time": 26, + "timeString": "26 sec", + "fuel": null, + "sulfur": 92 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "HV Pistol Ammo", + "quantity": 27, + "quantityTypeId": "-1691396643", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 135 + }, + { + "group": "melee", + "which": null, + "toolId": "1491189398", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 8.75, + "timeString": "8 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1302129395", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 10.5, + "timeString": "10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1302129395", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 15, + "timeString": "15 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "Handmade Shell", + "quantity": 6, + "quantityTypeId": "588596902", + "time": 22.5, + "timeString": "22 sec", + "fuel": null, + "sulfur": 30 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Buckshot", + "quantity": 5, + "quantityTypeId": "-1685290200", + "time": 18, + "timeString": "18 sec", + "fuel": null, + "sulfur": 50 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Incendiary Shell", + "quantity": 1, + "quantityTypeId": "-1036635990", + "time": 12.5, + "timeString": "12 sec", + "fuel": null, + "sulfur": 20 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Slug", + "quantity": 13, + "quantityTypeId": "-727717969", + "time": 54, + "timeString": "54 sec", + "fuel": null, + "sulfur": 130 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "Pistol Bullet", + "quantity": 19, + "quantityTypeId": "785728077", + "time": 13.5, + "timeString": "13 sec", + "fuel": null, + "sulfur": 48 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "Incendiary Pistol Bullet", + "quantity": 9, + "quantityTypeId": "51984655", + "time": 29.8, + "timeString": "29 sec", + "fuel": null, + "sulfur": 75 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "HV Pistol Ammo", + "quantity": 19, + "quantityTypeId": "-1691396643", + "time": 13.5, + "timeString": "13 sec", + "fuel": null, + "sulfur": 95 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "Pistol Bullet", + "quantity": 29, + "quantityTypeId": "785728077", + "time": 14.575, + "timeString": "14 sec", + "fuel": null, + "sulfur": 73 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "Incendiary Pistol Bullet", + "quantity": 12, + "quantityTypeId": "51984655", + "time": 30.15, + "timeString": "30 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "HV Pistol Ammo", + "quantity": 29, + "quantityTypeId": "-1691396643", + "time": 14.575, + "timeString": "14 sec", + "fuel": null, + "sulfur": 145 + }, + { + "group": "melee", + "which": null, + "toolId": "963906841", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 26, + "timeString": "26 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "963906841", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 30, + "timeString": "30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-262590403", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 6.25, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-262590403", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 12, + "timeString": "12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1506397857", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 4, + "timeString": "4 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1506397857", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 15, + "timeString": "15 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1780802565", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 6.25, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1780802565", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 21, + "timeString": "21 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "-1878475007", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 9, + "timeString": "9 sec", + "fuel": null, + "sulfur": 480 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "Handmade Shell", + "quantity": 6, + "quantityTypeId": "588596902", + "time": 5.5, + "timeString": "5 sec", + "fuel": null, + "sulfur": 30 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Buckshot", + "quantity": 5, + "quantityTypeId": "-1685290200", + "time": 4.4, + "timeString": "4 sec", + "fuel": null, + "sulfur": 50 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Incendiary Shell", + "quantity": 1, + "quantityTypeId": "-1036635990", + "time": 12.5, + "timeString": "12 sec", + "fuel": null, + "sulfur": 20 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Slug", + "quantity": 13, + "quantityTypeId": "-727717969", + "time": 22, + "timeString": "22 sec", + "fuel": null, + "sulfur": 130 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "Pistol Bullet", + "quantity": 25, + "quantityTypeId": "785728077", + "time": 9.1, + "timeString": "9 sec", + "fuel": null, + "sulfur": 63 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "Incendiary Pistol Bullet", + "quantity": 11, + "quantityTypeId": "51984655", + "time": 29.25, + "timeString": "29 sec", + "fuel": null, + "sulfur": 92 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "HV Pistol Ammo", + "quantity": 25, + "quantityTypeId": "-1691396643", + "time": 9.1, + "timeString": "9 sec", + "fuel": null, + "sulfur": 125 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "5.56 Rifle Ammo", + "quantity": 25, + "quantityTypeId": "-1211166256", + "time": 8.425, + "timeString": "8 sec", + "fuel": null, + "sulfur": 83 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1321651331", + "caption": "Semi-Automatic Rifle", + "quantity": 12, + "quantityTypeId": null, + "time": 1.925, + "timeString": "1 sec", + "fuel": null, + "sulfur": 300 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 12, + "quantityTypeId": "-1321651331", + "time": 1.925, + "timeString": "1 sec", + "fuel": null, + "sulfur": 300 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 16, + "quantityTypeId": "605467368", + "time": 2.625, + "timeString": "2 sec", + "fuel": null, + "sulfur": 200 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 25, + "quantityTypeId": "1712070256", + "time": 8.425, + "timeString": "8 sec", + "fuel": null, + "sulfur": 167 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "Pistol Bullet", + "quantity": 34, + "quantityTypeId": "785728077", + "time": 7.2, + "timeString": "7 sec", + "fuel": null, + "sulfur": 85 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "Incendiary Pistol Bullet", + "quantity": 13, + "quantityTypeId": "51984655", + "time": 26.2, + "timeString": "26 sec", + "fuel": null, + "sulfur": 108 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "HV Pistol Ammo", + "quantity": 34, + "quantityTypeId": "-1691396643", + "time": 7.2, + "timeString": "7 sec", + "fuel": null, + "sulfur": 170 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "Handmade Shell", + "quantity": 8, + "quantityTypeId": "588596902", + "time": 7.3, + "timeString": "7 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Buckshot", + "quantity": 7, + "quantityTypeId": "-1685290200", + "time": 7.05, + "timeString": "7 sec", + "fuel": null, + "sulfur": 70 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Incendiary Shell", + "quantity": 1, + "quantityTypeId": "-1036635990", + "time": 12.5, + "timeString": "12 sec", + "fuel": null, + "sulfur": 20 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Slug", + "quantity": 17, + "quantityTypeId": "-727717969", + "time": 15.1, + "timeString": "15 sec", + "fuel": null, + "sulfur": 170 + }, + { + "group": "melee", + "which": null, + "toolId": "-1583967946", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 12.6, + "timeString": "12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1583967946", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 30, + "timeString": "30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "171931394", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 10.8, + "timeString": "10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "171931394", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 30, + "timeString": "30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1602646136", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 9, + "timeString": "9 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1469578201", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 6, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1469578201", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 10.5, + "timeString": "10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1326180354", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 5, + "timeString": "5 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1326180354", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 15, + "timeString": "15 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "Pistol Bullet", + "quantity": 27, + "quantityTypeId": "785728077", + "time": 7.25, + "timeString": "7 sec", + "fuel": null, + "sulfur": 68 + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "Incendiary Pistol Bullet", + "quantity": 11, + "quantityTypeId": "51984655", + "time": 26.3, + "timeString": "26 sec", + "fuel": null, + "sulfur": 92 + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "HV Pistol Ammo", + "quantity": 27, + "quantityTypeId": "-1691396643", + "time": 7.25, + "timeString": "7 sec", + "fuel": null, + "sulfur": 135 }, { "group": "melee", @@ -172935,7 +178675,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -173055,7 +178795,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -173115,7 +178855,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -173319,7 +179059,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -173403,7 +179143,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -173475,7 +179215,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -173523,7 +179263,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -173571,7 +179311,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -173619,7 +179359,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -173703,7 +179443,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -173729,6 +179469,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "guns", "which": null, @@ -173763,7 +179515,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -173871,7 +179623,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -173907,7 +179659,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -174051,7 +179803,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -174111,7 +179863,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -174147,7 +179899,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -174339,7 +180091,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -174400,8 +180152,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -174425,7 +180177,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -174569,7 +180321,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -174629,7 +180381,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -174917,7 +180669,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -175001,7 +180753,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -175073,7 +180825,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -175121,7 +180873,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -175169,7 +180921,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -175217,7 +180969,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -175301,7 +181053,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -175351,6 +181103,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -175397,7 +181173,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -175517,7 +181293,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -175553,7 +181329,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -175610,8 +181386,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -175745,7 +181521,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -175805,7 +181581,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -175814,8 +181590,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -175838,10 +181614,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -176033,7 +181809,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -176118,8 +181894,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -176143,7 +181919,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -176287,7 +182063,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -176347,7 +182123,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -176635,7 +182411,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -176719,7 +182495,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -176791,7 +182567,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -176839,7 +182615,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -176887,7 +182663,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -176935,7 +182711,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -177019,7 +182795,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -177069,6 +182845,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -177115,7 +182915,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -177235,7 +183035,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -177271,7 +183071,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -177326,10 +183126,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 7, + "quantity": 5, "quantityTypeId": null, - "time": 506, - "timeString": "8 min 26 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -177463,7 +183263,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -177523,7 +183323,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -177532,8 +183332,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -177544,8 +183344,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 28, "quantityTypeId": "51984655", - "time": 31.6, - "timeString": "31 sec", + "time": 27.7, + "timeString": "27 sec", "fuel": null, "sulfur": 233 }, @@ -177556,10 +183356,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -177751,7 +183551,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -177849,7 +183649,7 @@ "time": 322, "timeString": "5 min 22 sec", "fuel": null, - "sulfur": 1080 + "sulfur": 648 }, { "group": "melee", @@ -177993,7 +183793,7 @@ "time": 326.228, "timeString": "5 min 26 sec", "fuel": null, - "sulfur": 24000 + "sulfur": 8004 }, { "group": "explosive", @@ -178053,7 +183853,7 @@ "time": 1890.4, "timeString": "31 min 30 sec", "fuel": null, - "sulfur": 15000 + "sulfur": 5003 }, { "group": "melee", @@ -178281,7 +184081,7 @@ "time": 400, "timeString": "6 min 40 sec", "fuel": null, - "sulfur": 19995 + "sulfur": 7500 }, { "group": "guns", @@ -178365,7 +184165,7 @@ "time": 238.75, "timeString": "3 min 58 sec", "fuel": null, - "sulfur": 20880 + "sulfur": 6963 }, { "group": "melee", @@ -178437,7 +184237,7 @@ "time": 2007, "timeString": "33 min 27 sec", "fuel": null, - "sulfur": 15000 + "sulfur": 5003 }, { "group": "guns", @@ -178485,7 +184285,7 @@ "time": 370, "timeString": "6 min 10 sec", "fuel": null, - "sulfur": 30000 + "sulfur": 10005 }, { "group": "guns", @@ -178533,7 +184333,7 @@ "time": 177.18, "timeString": "2 min 57 sec", "fuel": null, - "sulfur": 18480 + "sulfur": 6163 }, { "group": "guns", @@ -178581,7 +184381,7 @@ "time": 391.25, "timeString": "6 min 31 sec", "fuel": null, - "sulfur": 24000 + "sulfur": 8004 }, { "group": "guns", @@ -178665,7 +184465,7 @@ "time": 397.07, "timeString": "6 min 37 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -178715,6 +184515,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1600, + "quantityTypeId": "-1211166256", + "time": 176.9, + "timeString": "2 min 56 sec", + "fuel": null, + "sulfur": 5328 + }, { "group": "guns", "which": null, @@ -178749,7 +184561,7 @@ "time": 366.6, "timeString": "6 min 6 sec", "fuel": null, - "sulfur": 21328 + "sulfur": 8000 }, { "group": "melee", @@ -178869,7 +184681,7 @@ "time": 815.1, "timeString": "13 min 35 sec", "fuel": null, - "sulfur": 14543 + "sulfur": 5455 }, { "group": "guns", @@ -178905,7 +184717,7 @@ "time": 990.1, "timeString": "16 min 30 sec", "fuel": null, - "sulfur": 22861 + "sulfur": 8575 }, { "group": "melee", @@ -178960,10 +184772,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 28, + "quantity": 18, "quantityTypeId": null, - "time": 2027, - "timeString": "33 min 47 sec", + "time": 1017, + "timeString": "16 min 57 sec", "fuel": null, "sulfur": null }, @@ -179097,7 +184909,7 @@ "time": 634.6, "timeString": "10 min 34 sec", "fuel": null, - "sulfur": 19995 + "sulfur": 7500 }, { "group": "guns", @@ -179157,7 +184969,7 @@ "time": 655.25, "timeString": "10 min 55 sec", "fuel": null, - "sulfur": 30000 + "sulfur": 10005 }, { "group": "guns", @@ -179166,8 +184978,8 @@ "caption": "Pistol Bullet", "quantity": 2000, "quantityTypeId": "785728077", - "time": 523.6, - "timeString": "8 min 43 sec", + "time": 457.3, + "timeString": "7 min 37 sec", "fuel": null, "sulfur": 5000 }, @@ -179178,8 +184990,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 2000, "quantityTypeId": "51984655", - "time": 523.6, - "timeString": "8 min 43 sec", + "time": 457.3, + "timeString": "7 min 37 sec", "fuel": null, "sulfur": 16660 }, @@ -179190,10 +185002,10 @@ "caption": "HV Pistol Ammo", "quantity": 2000, "quantityTypeId": "-1691396643", - "time": 523.6, - "timeString": "8 min 43 sec", + "time": 457.3, + "timeString": "7 min 37 sec", "fuel": null, - "sulfur": 26660 + "sulfur": 10000 }, { "group": "guns", @@ -179385,7 +185197,7 @@ "time": 513.6, "timeString": "8 min 33 sec", "fuel": null, - "sulfur": 21328 + "sulfur": 8000 }, { "group": "melee", @@ -179483,7 +185295,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -179603,7 +185415,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -179663,7 +185475,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -179867,7 +185679,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -179951,7 +185763,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -180023,7 +185835,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -180071,7 +185883,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -180119,7 +185931,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -180167,7 +185979,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -180251,7 +186063,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -180277,6 +186089,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "guns", "which": null, @@ -180311,7 +186135,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -180419,7 +186243,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -180455,7 +186279,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -180599,7 +186423,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -180659,7 +186483,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -180695,7 +186519,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -180887,7 +186711,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -180948,8 +186772,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -180973,7 +186797,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -181117,7 +186941,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -181177,7 +187001,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -181573,7 +187397,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -181657,7 +187481,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -181729,7 +187553,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -181777,7 +187601,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -181825,7 +187649,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -181873,7 +187697,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -181957,7 +187781,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -182007,6 +187831,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -182053,7 +187901,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -182197,7 +188045,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -182233,7 +188081,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -182290,8 +188138,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 3, + "timeString": "3 sec", "fuel": null, "sulfur": null }, @@ -182425,7 +188273,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -182485,7 +188333,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -182521,7 +188369,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -182737,7 +188585,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -182834,8 +188682,8 @@ "quantityTypeId": null, "time": 41.103210160714, "timeString": "41 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -182859,7 +188707,7 @@ "time": 244, "timeString": "4 min 4 sec", "fuel": null, - "sulfur": 820 + "sulfur": 492 }, { "group": "melee", @@ -183003,7 +188851,7 @@ "time": 134.7839, "timeString": "2 min 14 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "explosive", @@ -183063,7 +188911,7 @@ "time": 787.8, "timeString": "13 min 7 sec", "fuel": null, - "sulfur": 6260 + "sulfur": 2088 }, { "group": "melee", @@ -183351,7 +189199,7 @@ "time": 164.975, "timeString": "2 min 44 sec", "fuel": null, - "sulfur": 8331 + "sulfur": 3125 }, { "group": "guns", @@ -183435,7 +189283,7 @@ "time": 98.875, "timeString": "1 min 38 sec", "fuel": null, - "sulfur": 8700 + "sulfur": 2901 }, { "group": "melee", @@ -183507,7 +189355,7 @@ "time": 836, "timeString": "13 min 56 sec", "fuel": null, - "sulfur": 6260 + "sulfur": 2088 }, { "group": "guns", @@ -183555,7 +189403,7 @@ "time": 152.48, "timeString": "2 min 32 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -183603,7 +189451,7 @@ "time": 68.22, "timeString": "1 min 8 sec", "fuel": null, - "sulfur": 7700 + "sulfur": 2568 }, { "group": "guns", @@ -183651,7 +189499,7 @@ "time": 161.125, "timeString": "2 min 41 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -183735,7 +189583,7 @@ "time": 166.13, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "melee", @@ -183785,6 +189633,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 509, + "quantityTypeId": null, + "time": 78.5, + "timeString": "1 min 18 sec", + "fuel": 509, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 667, + "quantityTypeId": "-1211166256", + "time": 73.4, + "timeString": "1 min 13 sec", + "fuel": null, + "sulfur": 2221 + }, { "group": "explosive", "which": null, @@ -183831,7 +189703,7 @@ "time": 152.4, "timeString": "2 min 32 sec", "fuel": null, - "sulfur": 8891 + "sulfur": 3335 }, { "group": "melee", @@ -183951,7 +189823,7 @@ "time": 338.1, "timeString": "5 min 38 sec", "fuel": null, - "sulfur": 6065 + "sulfur": 2275 }, { "group": "guns", @@ -183987,7 +189859,7 @@ "time": 411.975, "timeString": "6 min 51 sec", "fuel": null, - "sulfur": 9531 + "sulfur": 3575 }, { "group": "melee", @@ -184042,10 +189914,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 8, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 424, + "timeString": "7 min 4 sec", "fuel": null, "sulfur": null }, @@ -184179,7 +190051,7 @@ "time": 264.1, "timeString": "4 min 24 sec", "fuel": null, - "sulfur": 8331 + "sulfur": 3125 }, { "group": "guns", @@ -184239,7 +190111,7 @@ "time": 273.975, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -184248,8 +190120,8 @@ "caption": "Pistol Bullet", "quantity": 834, "quantityTypeId": "785728077", - "time": 215.9, - "timeString": "3 min 35 sec", + "time": 188.6, + "timeString": "3 min 8 sec", "fuel": null, "sulfur": 2085 }, @@ -184260,8 +190132,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 316, "quantityTypeId": "51984655", - "time": 107.2, - "timeString": "1 min 47 sec", + "time": 95.5, + "timeString": "1 min 35 sec", "fuel": null, "sulfur": 2632 }, @@ -184272,10 +190144,10 @@ "caption": "HV Pistol Ammo", "quantity": 834, "quantityTypeId": "-1691396643", - "time": 215.9, - "timeString": "3 min 35 sec", + "time": 188.6, + "timeString": "3 min 8 sec", "fuel": null, - "sulfur": 11117 + "sulfur": 4170 }, { "group": "guns", @@ -184467,7 +190339,7 @@ "time": 214.29, "timeString": "3 min 34 sec", "fuel": null, - "sulfur": 8891 + "sulfur": 3335 }, { "group": "melee", @@ -184552,8 +190424,8 @@ "quantityTypeId": null, "time": 1.2330963048214, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -184577,7 +190449,7 @@ "time": 70, "timeString": "1 min 10 sec", "fuel": null, - "sulfur": 240 + "sulfur": 144 }, { "group": "melee", @@ -184721,7 +190593,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -184781,7 +190653,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -185069,7 +190941,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -185153,7 +191025,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -185225,7 +191097,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -185273,7 +191145,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -185321,7 +191193,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -185369,7 +191241,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -185453,7 +191325,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -185503,6 +191375,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 16, + "quantityTypeId": null, + "time": 19, + "timeString": "19 sec", + "fuel": 16, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -185549,7 +191445,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -185669,7 +191565,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -185705,7 +191601,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -185760,10 +191656,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 4, + "quantity": 3, "quantityTypeId": null, - "time": 253, - "timeString": "4 min 13 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -185897,7 +191793,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -185957,7 +191853,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -185966,8 +191862,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -185990,10 +191886,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -186185,7 +192081,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -186270,8 +192166,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -186295,7 +192191,7 @@ "time": 52, "timeString": "52 sec", "fuel": null, - "sulfur": 180 + "sulfur": 108 }, { "group": "melee", @@ -186439,7 +192335,7 @@ "time": 42.5282, "timeString": "42 sec", "fuel": null, - "sulfur": 3200 + "sulfur": 1067 }, { "group": "explosive", @@ -186499,7 +192395,7 @@ "time": 247.5, "timeString": "4 min 7 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "melee", @@ -186787,7 +192683,7 @@ "time": 53.05, "timeString": "53 sec", "fuel": null, - "sulfur": 2666 + "sulfur": 1000 }, { "group": "guns", @@ -186871,7 +192767,7 @@ "time": 30.125, "timeString": "30 sec", "fuel": null, - "sulfur": 2800 + "sulfur": 934 }, { "group": "melee", @@ -186943,7 +192839,7 @@ "time": 265, "timeString": "4 min 25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -186991,7 +192887,7 @@ "time": 47.16, "timeString": "47 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -187039,7 +192935,7 @@ "time": 22.14, "timeString": "22 sec", "fuel": null, - "sulfur": 2480 + "sulfur": 827 }, { "group": "guns", @@ -187087,7 +192983,7 @@ "time": 49.35, "timeString": "49 sec", "fuel": null, - "sulfur": 3200 + "sulfur": 1067 }, { "group": "guns", @@ -187171,7 +193067,7 @@ "time": 51.19, "timeString": "51 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "melee", @@ -187221,6 +193117,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 214, + "quantityTypeId": "-1211166256", + "time": 21.3, + "timeString": "21 sec", + "fuel": null, + "sulfur": 713 + }, { "group": "explosive", "which": null, @@ -187267,7 +193187,7 @@ "time": 48.6, "timeString": "48 sec", "fuel": null, - "sulfur": 2853 + "sulfur": 1070 }, { "group": "melee", @@ -187387,7 +193307,7 @@ "time": 108.15, "timeString": "1 min 48 sec", "fuel": null, - "sulfur": 1946 + "sulfur": 730 }, { "group": "guns", @@ -187423,7 +193343,7 @@ "time": 130.2, "timeString": "2 min 10 sec", "fuel": null, - "sulfur": 3053 + "sulfur": 1145 }, { "group": "melee", @@ -187478,10 +193398,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 19, + "quantity": 18, "quantityTypeId": null, - "time": 1352, - "timeString": "22 min 32 sec", + "time": 1017, + "timeString": "16 min 57 sec", "fuel": null, "sulfur": null }, @@ -187615,7 +193535,7 @@ "time": 82.1, "timeString": "1 min 22 sec", "fuel": null, - "sulfur": 2666 + "sulfur": 1000 }, { "group": "guns", @@ -187675,7 +193595,7 @@ "time": 85.525, "timeString": "1 min 25 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -187684,8 +193604,8 @@ "caption": "Pistol Bullet", "quantity": 267, "quantityTypeId": "785728077", - "time": 69.5, - "timeString": "1 min 9 sec", + "time": 57.8, + "timeString": "57 sec", "fuel": null, "sulfur": 668 }, @@ -187696,8 +193616,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 74, "quantityTypeId": "51984655", - "time": 44, - "timeString": "44 sec", + "time": 40.1, + "timeString": "40 sec", "fuel": null, "sulfur": 616 }, @@ -187708,10 +193628,10 @@ "caption": "HV Pistol Ammo", "quantity": 267, "quantityTypeId": "-1691396643", - "time": 69.5, - "timeString": "1 min 9 sec", + "time": 57.8, + "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "guns", @@ -187903,7 +193823,7 @@ "time": 66.39, "timeString": "1 min 6 sec", "fuel": null, - "sulfur": 2853 + "sulfur": 1070 }, { "group": "melee", @@ -187988,8 +193908,8 @@ "quantityTypeId": null, "time": 1.2330963048214, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -188013,7 +193933,7 @@ "time": 70, "timeString": "1 min 10 sec", "fuel": null, - "sulfur": 240 + "sulfur": 144 }, { "group": "melee", @@ -188157,7 +194077,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -188217,7 +194137,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -188505,7 +194425,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -188589,7 +194509,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -188661,7 +194581,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -188709,7 +194629,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -188757,7 +194677,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -188805,7 +194725,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -188889,7 +194809,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -188939,6 +194859,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 16, + "quantityTypeId": null, + "time": 19, + "timeString": "19 sec", + "fuel": 16, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -188985,7 +194929,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -189105,7 +195049,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -189141,7 +195085,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -189196,10 +195140,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 4, + "quantity": 3, "quantityTypeId": null, - "time": 253, - "timeString": "4 min 13 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -189333,7 +195277,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -189393,7 +195337,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -189402,8 +195346,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -189426,10 +195370,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -189621,7 +195565,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -189706,8 +195650,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -189731,7 +195675,7 @@ "time": 22, "timeString": "22 sec", "fuel": null, - "sulfur": 80 + "sulfur": 48 }, { "group": "melee", @@ -189875,7 +195819,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -189935,7 +195879,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -190223,7 +196167,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -190307,7 +196251,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -190379,7 +196323,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -190427,7 +196371,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -190475,7 +196419,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -190523,7 +196467,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -190607,7 +196551,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -190657,6 +196601,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -190703,7 +196671,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -190823,7 +196791,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -190859,7 +196827,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -190916,8 +196884,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -191051,7 +197019,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -191111,7 +197079,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -191147,7 +197115,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -191339,7 +197307,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -191424,8 +197392,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -191449,7 +197417,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -191593,7 +197561,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -191653,7 +197621,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -192049,7 +198017,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -192133,7 +198101,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -192205,7 +198173,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -192253,7 +198221,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -192301,7 +198269,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -192349,7 +198317,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -192433,7 +198401,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -192483,6 +198451,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -192529,7 +198521,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -192673,7 +198665,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -192709,7 +198701,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -192766,8 +198758,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 2, + "timeString": "2 sec", "fuel": null, "sulfur": null }, @@ -192901,7 +198893,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -192961,7 +198953,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -192997,7 +198989,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -193213,7 +199205,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -193310,8 +199302,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -193335,7 +199327,7 @@ "time": 100, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 340 + "sulfur": 204 }, { "group": "melee", @@ -193479,7 +199471,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -193539,7 +199531,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -193827,7 +199819,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -193911,7 +199903,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -193983,7 +199975,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -194031,7 +200023,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -194079,7 +200071,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -194127,7 +200119,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -194211,7 +200203,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -194261,6 +200253,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -194307,7 +200323,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -194427,7 +200443,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -194463,7 +200479,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -194518,10 +200534,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -194655,7 +200671,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -194715,7 +200731,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -194724,8 +200740,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -194736,8 +200752,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 127, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 53.2, + "timeString": "53 sec", "fuel": null, "sulfur": 1058 }, @@ -194748,10 +200764,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -194943,7 +200959,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -195028,8 +201044,8 @@ "quantityTypeId": null, "time": 9.8647704385713, "timeString": "9 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -195053,7 +201069,7 @@ "time": 22, "timeString": "22 sec", "fuel": null, - "sulfur": 80 + "sulfur": 48 }, { "group": "melee", @@ -195197,7 +201213,7 @@ "time": 28.6628, "timeString": "28 sec", "fuel": null, - "sulfur": 2400 + "sulfur": 800 }, { "group": "explosive", @@ -195257,7 +201273,7 @@ "time": 185.2, "timeString": "3 min 5 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "melee", @@ -195545,7 +201561,7 @@ "time": 39.0625, "timeString": "39 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 750 }, { "group": "guns", @@ -195629,7 +201645,7 @@ "time": 19.375, "timeString": "19 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -195701,7 +201717,7 @@ "time": 198, "timeString": "3 min 18 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -195749,7 +201765,7 @@ "time": 33.4, "timeString": "33 sec", "fuel": null, - "sulfur": 3000 + "sulfur": 1001 }, { "group": "guns", @@ -195797,7 +201813,7 @@ "time": 11.04, "timeString": "11 sec", "fuel": null, - "sulfur": 1860 + "sulfur": 620 }, { "group": "guns", @@ -195845,7 +201861,7 @@ "time": 36.2, "timeString": "36 sec", "fuel": null, - "sulfur": 2400 + "sulfur": 800 }, { "group": "guns", @@ -195929,7 +201945,7 @@ "time": 37.87, "timeString": "37 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -195979,6 +201995,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 123, + "quantityTypeId": null, + "time": 29.7, + "timeString": "29 sec", + "fuel": 123, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 160, + "quantityTypeId": "-1211166256", + "time": 15.9, + "timeString": "15 sec", + "fuel": null, + "sulfur": 533 + }, { "group": "explosive", "which": null, @@ -196025,7 +202065,7 @@ "time": 35.4, "timeString": "35 sec", "fuel": null, - "sulfur": 2133 + "sulfur": 800 }, { "group": "melee", @@ -196145,7 +202185,7 @@ "time": 81.15, "timeString": "1 min 21 sec", "fuel": null, - "sulfur": 1466 + "sulfur": 550 }, { "group": "guns", @@ -196181,7 +202221,7 @@ "time": 97.65, "timeString": "1 min 37 sec", "fuel": null, - "sulfur": 2293 + "sulfur": 860 }, { "group": "melee", @@ -196238,8 +202278,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 40, - "timeString": "40 sec", + "time": 20, + "timeString": "20 sec", "fuel": null, "sulfur": null }, @@ -196373,7 +202413,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 2000 + "sulfur": 750 }, { "group": "guns", @@ -196433,7 +202473,7 @@ "time": 64.1, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3000 + "sulfur": 1001 }, { "group": "guns", @@ -196442,8 +202482,8 @@ "caption": "Pistol Bullet", "quantity": 200, "quantityTypeId": "785728077", - "time": 51.1, - "timeString": "51 sec", + "time": 43.3, + "timeString": "43 sec", "fuel": null, "sulfur": 500 }, @@ -196454,8 +202494,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 76, "quantityTypeId": "51984655", - "time": 44.2, - "timeString": "44 sec", + "time": 40.3, + "timeString": "40 sec", "fuel": null, "sulfur": 633 }, @@ -196466,10 +202506,10 @@ "caption": "HV Pistol Ammo", "quantity": 200, "quantityTypeId": "-1691396643", - "time": 51.1, - "timeString": "51 sec", + "time": 43.3, + "timeString": "43 sec", "fuel": null, - "sulfur": 2666 + "sulfur": 1000 }, { "group": "guns", @@ -196661,7 +202701,7 @@ "time": 47.76, "timeString": "47 sec", "fuel": null, - "sulfur": 2133 + "sulfur": 800 }, { "group": "melee", @@ -196746,8 +202786,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -196771,7 +202811,7 @@ "time": 100, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 340 + "sulfur": 204 }, { "group": "melee", @@ -196915,7 +202955,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -196975,7 +203015,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -197263,7 +203303,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -197347,7 +203387,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -197419,7 +203459,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -197467,7 +203507,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -197515,7 +203555,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -197563,7 +203603,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -197647,7 +203687,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -197697,6 +203737,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -197743,7 +203807,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -197863,7 +203927,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -197899,7 +203963,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -197954,10 +204018,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -198091,7 +204155,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -198151,7 +204215,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -198160,8 +204224,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -198172,8 +204236,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 127, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 53.2, + "timeString": "53 sec", "fuel": null, "sulfur": 1058 }, @@ -198184,10 +204248,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -198379,7 +204443,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -198460,12 +204524,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 560, + "quantity": 280, "quantityTypeId": null, - "time": 3354, - "timeString": "55 min 54 sec", - "fuel": 141680, - "sulfur": 341600 + "time": 1674, + "timeString": "27 min 54 sec", + "fuel": 21000, + "sulfur": 84000 }, { "group": "explosive", @@ -198489,7 +204553,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -198633,7 +204697,7 @@ "time": 35.5955, "timeString": "35 sec", "fuel": null, - "sulfur": 2800 + "sulfur": 934 }, { "group": "explosive", @@ -198693,7 +204757,7 @@ "time": 217.2, "timeString": "3 min 37 sec", "fuel": null, - "sulfur": 1760 + "sulfur": 587 }, { "group": "melee", @@ -199089,7 +205153,7 @@ "time": 44.6625, "timeString": "44 sec", "fuel": null, - "sulfur": 2333 + "sulfur": 875 }, { "group": "guns", @@ -199173,7 +205237,7 @@ "time": 27.875, "timeString": "27 sec", "fuel": null, - "sulfur": 2440 + "sulfur": 814 }, { "group": "melee", @@ -199245,7 +205309,7 @@ "time": 233, "timeString": "3 min 53 sec", "fuel": null, - "sulfur": 1760 + "sulfur": 587 }, { "group": "guns", @@ -199293,7 +205357,7 @@ "time": 40.28, "timeString": "40 sec", "fuel": null, - "sulfur": 3500 + "sulfur": 1167 }, { "group": "guns", @@ -199341,7 +205405,7 @@ "time": 20.22, "timeString": "20 sec", "fuel": null, - "sulfur": 2160 + "sulfur": 720 }, { "group": "guns", @@ -199389,7 +205453,7 @@ "time": 42.775, "timeString": "42 sec", "fuel": null, - "sulfur": 2800 + "sulfur": 934 }, { "group": "guns", @@ -199473,7 +205537,7 @@ "time": 45.65, "timeString": "45 sec", "fuel": null, - "sulfur": 2079 + "sulfur": 780 }, { "group": "melee", @@ -199523,6 +205587,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 3500, + "quantityTypeId": null, + "time": 428.1, + "timeString": "7 min 8 sec", + "fuel": 3500, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 187, + "quantityTypeId": "-1211166256", + "time": 18.6, + "timeString": "18 sec", + "fuel": null, + "sulfur": 623 + }, { "group": "explosive", "which": null, @@ -199569,7 +205657,7 @@ "time": 42, "timeString": "42 sec", "fuel": null, - "sulfur": 2493 + "sulfur": 935 }, { "group": "guns", @@ -199713,7 +205801,7 @@ "time": 94.65, "timeString": "1 min 34 sec", "fuel": null, - "sulfur": 1706 + "sulfur": 640 }, { "group": "guns", @@ -199749,7 +205837,7 @@ "time": 112.225, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2666 + "sulfur": 1000 }, { "group": "melee", @@ -199804,10 +205892,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 7, + "quantity": 6, "quantityTypeId": null, - "time": 473, - "timeString": "7 min 53 sec", + "time": 355, + "timeString": "5 min 55 sec", "fuel": null, "sulfur": null }, @@ -199941,7 +206029,7 @@ "time": 72.85, "timeString": "1 min 12 sec", "fuel": null, - "sulfur": 2333 + "sulfur": 875 }, { "group": "guns", @@ -200001,7 +206089,7 @@ "time": 72.7, "timeString": "1 min 12 sec", "fuel": null, - "sulfur": 3500 + "sulfur": 1167 }, { "group": "guns", @@ -200010,8 +206098,8 @@ "caption": "Pistol Bullet", "quantity": 234, "quantityTypeId": "785728077", - "time": 58.4, - "timeString": "58 sec", + "time": 50.6, + "timeString": "50 sec", "fuel": null, "sulfur": 585 }, @@ -200022,8 +206110,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 221, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 49.3, + "timeString": "49 sec", "fuel": null, "sulfur": 1841 }, @@ -200034,10 +206122,10 @@ "caption": "HV Pistol Ammo", "quantity": 234, "quantityTypeId": "-1691396643", - "time": 58.4, - "timeString": "58 sec", + "time": 50.6, + "timeString": "50 sec", "fuel": null, - "sulfur": 3119 + "sulfur": 1170 }, { "group": "guns", @@ -200253,7 +206341,7 @@ "time": 59.01, "timeString": "59 sec", "fuel": null, - "sulfur": 2493 + "sulfur": 935 }, { "group": "melee", @@ -200363,7 +206451,7 @@ "time": 28, "timeString": "28 sec", "fuel": null, - "sulfur": 100 + "sulfur": 60 }, { "group": "melee", @@ -200483,7 +206571,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -200543,7 +206631,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -200747,7 +206835,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -200831,7 +206919,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -200903,7 +206991,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -200951,7 +207039,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -200999,7 +207087,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -201047,7 +207135,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -201131,7 +207219,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -201157,6 +207245,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "guns", "which": null, @@ -201191,7 +207291,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -201299,7 +207399,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -201335,7 +207435,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -201479,7 +207579,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -201539,7 +207639,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -201575,7 +207675,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -201767,7 +207867,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -201828,8 +207928,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -201853,7 +207953,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -201997,7 +208097,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 100 + "sulfur": 33 }, { "group": "explosive", @@ -202057,7 +208157,7 @@ "time": 5.1, "timeString": "5 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "melee", @@ -202345,7 +208445,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 93 + "sulfur": 35 }, { "group": "guns", @@ -202429,7 +208529,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 100 + "sulfur": 33 }, { "group": "melee", @@ -202501,7 +208601,7 @@ "time": 7.8, "timeString": "7 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "guns", @@ -202549,7 +208649,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -202597,7 +208697,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "guns", @@ -202645,7 +208745,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 100 + "sulfur": 33 }, { "group": "guns", @@ -202729,7 +208829,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 80 + "sulfur": 30 }, { "group": "melee", @@ -202779,6 +208879,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 18, + "timeString": "18 sec", + "fuel": 6, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 7, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 23 + }, { "group": "explosive", "which": null, @@ -202825,7 +208949,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 93 + "sulfur": 35 }, { "group": "melee", @@ -202945,7 +209069,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 67 + "sulfur": 25 }, { "group": "guns", @@ -202981,7 +209105,7 @@ "time": 1.225, "timeString": "1 sec", "fuel": null, - "sulfur": 107 + "sulfur": 40 }, { "group": "melee", @@ -203038,8 +209162,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 2, - "timeString": "2 sec", + "time": 1, + "timeString": "1 sec", "fuel": null, "sulfur": null }, @@ -203173,7 +209297,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 93 + "sulfur": 35 }, { "group": "guns", @@ -203233,7 +209357,7 @@ "time": 1.05, "timeString": "1 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -203269,7 +209393,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 120 + "sulfur": 45 }, { "group": "guns", @@ -203461,7 +209585,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 93 + "sulfur": 35 }, { "group": "melee", @@ -203546,8 +209670,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -203571,7 +209695,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -203715,7 +209839,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -203775,7 +209899,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -204063,7 +210187,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -204147,7 +210271,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -204219,7 +210343,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -204267,7 +210391,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -204315,7 +210439,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -204363,7 +210487,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -204447,7 +210571,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -204497,6 +210621,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -204543,7 +210691,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -204663,7 +210811,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -204699,7 +210847,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -204756,8 +210904,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 4, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -204891,7 +211039,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -204951,7 +211099,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -204987,7 +211135,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -205179,7 +211327,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -205264,8 +211412,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -205289,7 +211437,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -205433,7 +211581,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -205493,7 +211641,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -205781,7 +211929,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -205865,7 +212013,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -205937,7 +212085,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -205985,7 +212133,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -206033,7 +212181,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -206081,7 +212229,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -206165,7 +212313,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -206215,6 +212363,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "explosive", "which": null, @@ -206261,7 +212433,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -206381,7 +212553,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -206417,7 +212589,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -206474,8 +212646,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 2, + "timeString": "2 sec", "fuel": null, "sulfur": null }, @@ -206609,7 +212781,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -206669,7 +212841,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -206705,7 +212877,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -206897,7 +213069,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -206995,7 +213167,7 @@ "time": 190, "timeString": "3 min 10 sec", "fuel": null, - "sulfur": 640 + "sulfur": 384 }, { "group": "explosive", @@ -207242,10 +213414,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 24, + "quantity": 23, "quantityTypeId": null, - "time": 1690, - "timeString": "28 min 10 sec", + "time": 1272, + "timeString": "21 min 12 sec", "fuel": null, "sulfur": null }, @@ -207392,8 +213564,8 @@ "quantityTypeId": null, "time": 88.206420321427, "timeString": "1 min 28 sec", - "fuel": 506, - "sulfur": 1220 + "fuel": 150, + "sulfur": 600 }, { "group": "explosive", @@ -207417,7 +213589,7 @@ "time": 484, "timeString": "8 min 4 sec", "fuel": null, - "sulfur": 1620 + "sulfur": 972 }, { "group": "melee", @@ -207561,7 +213733,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -207621,7 +213793,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -207909,7 +214081,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -207993,7 +214165,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -208065,7 +214237,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -208113,7 +214285,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -208161,7 +214333,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -208209,7 +214381,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -208293,7 +214465,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -208343,6 +214515,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1017, + "quantityTypeId": null, + "time": 139.5, + "timeString": "2 min 19 sec", + "fuel": 1017, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "explosive", "which": null, @@ -208389,7 +214585,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -208509,7 +214705,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -208545,7 +214741,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -208602,8 +214798,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 34, - "timeString": "34 sec", + "time": 17, + "timeString": "17 sec", "fuel": null, "sulfur": null }, @@ -208737,7 +214933,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -208797,7 +214993,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -208806,8 +215002,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -208818,8 +215014,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 631, "quantityTypeId": "51984655", - "time": 189.4, - "timeString": "3 min 9 sec", + "time": 169.9, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": 5256 }, @@ -208830,10 +215026,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -209025,7 +215221,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -209110,8 +215306,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -209135,7 +215331,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -209279,7 +215475,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -209339,7 +215535,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -209627,7 +215823,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -209711,7 +215907,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -209783,7 +215979,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -209831,7 +216027,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -209879,7 +216075,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -209927,7 +216123,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -210011,7 +216207,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -210061,6 +216257,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -210107,7 +216327,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -210227,7 +216447,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -210263,7 +216483,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -210320,8 +216540,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -210455,7 +216675,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -210515,7 +216735,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -210536,8 +216756,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -210551,7 +216771,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -210743,7 +216963,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -210828,8 +217048,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -210853,7 +217073,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -210997,7 +217217,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -211057,7 +217277,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -211345,7 +217565,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -211429,7 +217649,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -211501,7 +217721,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -211549,7 +217769,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -211597,7 +217817,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -211645,7 +217865,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -211729,7 +217949,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -211779,6 +217999,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -211825,7 +218069,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -211945,7 +218189,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -211981,7 +218225,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -212038,8 +218282,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -212173,7 +218417,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -212233,7 +218477,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -212254,8 +218498,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -212269,7 +218513,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -212461,7 +218705,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -212559,7 +218803,7 @@ "time": 190, "timeString": "3 min 10 sec", "fuel": null, - "sulfur": 640 + "sulfur": 384 }, { "group": "explosive", @@ -212926,10 +219170,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 24, + "quantity": 23, "quantityTypeId": null, - "time": 1690, - "timeString": "28 min 10 sec", + "time": 1272, + "timeString": "21 min 12 sec", "fuel": null, "sulfur": null }, @@ -212952,8 +219196,8 @@ "caption": null, "quantity": 3, "quantityTypeId": null, - "time": 169, - "timeString": "2 min 49 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -213148,8 +219392,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -213173,7 +219417,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -213317,7 +219561,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -213377,7 +219621,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -213773,7 +220017,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -213857,7 +220101,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -213929,7 +220173,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -213977,7 +220221,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -214025,7 +220269,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -214073,7 +220317,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -214157,7 +220401,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -214207,6 +220451,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "explosive", "which": null, @@ -214253,7 +220521,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "guns", @@ -214397,7 +220665,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -214433,7 +220701,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -214490,8 +220758,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -214625,7 +220893,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -214685,7 +220953,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -214721,7 +220989,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -214937,7 +221205,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -215034,8 +221302,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -215059,7 +221327,7 @@ "time": 100, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 340 + "sulfur": 204 }, { "group": "melee", @@ -215203,7 +221471,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -215263,7 +221531,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -215551,7 +221819,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -215635,7 +221903,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -215707,7 +221975,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -215755,7 +222023,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -215803,7 +222071,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -215851,7 +222119,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -215935,7 +222203,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -215985,6 +222253,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -216031,7 +222323,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -216151,7 +222443,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -216187,7 +222479,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -216242,10 +222534,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -216379,7 +222671,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -216439,7 +222731,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -216448,8 +222740,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -216460,8 +222752,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 127, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 53.2, + "timeString": "53 sec", "fuel": null, "sulfur": 1058 }, @@ -216472,10 +222764,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -216667,7 +222959,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -216765,7 +223057,7 @@ "time": 190, "timeString": "3 min 10 sec", "fuel": null, - "sulfur": 640 + "sulfur": 384 }, { "group": "explosive", @@ -217012,10 +223304,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 24, + "quantity": 23, "quantityTypeId": null, - "time": 1690, - "timeString": "28 min 10 sec", + "time": 1272, + "timeString": "21 min 12 sec", "fuel": null, "sulfur": null }, @@ -217162,8 +223454,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -217187,7 +223479,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -217331,7 +223623,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -217391,7 +223683,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -217679,7 +223971,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -217763,7 +224055,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -217835,7 +224127,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -217883,7 +224175,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -217931,7 +224223,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -217979,7 +224271,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -218063,7 +224355,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -218113,6 +224405,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -218159,7 +224475,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -218279,7 +224595,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -218315,7 +224631,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -218370,10 +224686,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 7, + "quantity": 5, "quantityTypeId": null, - "time": 506, - "timeString": "8 min 26 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -218507,7 +224823,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -218567,7 +224883,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -218576,8 +224892,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -218588,8 +224904,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 28, "quantityTypeId": "51984655", - "time": 31.6, - "timeString": "31 sec", + "time": 27.7, + "timeString": "27 sec", "fuel": null, "sulfur": 233 }, @@ -218600,10 +224916,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -218795,7 +225111,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -218880,8 +225196,8 @@ "quantityTypeId": null, "time": 24.661926096428, "timeString": "24 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -218905,7 +225221,7 @@ "time": 148, "timeString": "2 min 28 sec", "fuel": null, - "sulfur": 500 + "sulfur": 300 }, { "group": "melee", @@ -219049,7 +225365,7 @@ "time": 78.257, "timeString": "1 min 18 sec", "fuel": null, - "sulfur": 6000 + "sulfur": 2001 }, { "group": "explosive", @@ -219109,7 +225425,7 @@ "time": 469.7, "timeString": "7 min 49 sec", "fuel": null, - "sulfur": 3760 + "sulfur": 1254 }, { "group": "melee", @@ -219397,7 +225713,7 @@ "time": 97.825, "timeString": "1 min 37 sec", "fuel": null, - "sulfur": 4999 + "sulfur": 1875 }, { "group": "guns", @@ -219481,7 +225797,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 5220 + "sulfur": 1741 }, { "group": "melee", @@ -219553,7 +225869,7 @@ "time": 501, "timeString": "8 min 21 sec", "fuel": null, - "sulfur": 3760 + "sulfur": 1254 }, { "group": "guns", @@ -219601,7 +225917,7 @@ "time": 91.44, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 7500 + "sulfur": 2501 }, { "group": "guns", @@ -219649,7 +225965,7 @@ "time": 42.36, "timeString": "42 sec", "fuel": null, - "sulfur": 4620 + "sulfur": 1541 }, { "group": "guns", @@ -219697,7 +226013,7 @@ "time": 95.375, "timeString": "1 min 35 sec", "fuel": null, - "sulfur": 6000 + "sulfur": 2001 }, { "group": "guns", @@ -219781,7 +226097,7 @@ "time": 99.23, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "melee", @@ -219831,6 +226147,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 306, + "quantityTypeId": null, + "time": 54.8, + "timeString": "54 sec", + "fuel": 306, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 400, + "quantityTypeId": "-1211166256", + "time": 43.3, + "timeString": "43 sec", + "fuel": null, + "sulfur": 1332 + }, { "group": "explosive", "which": null, @@ -219877,7 +226217,7 @@ "time": 90.6, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 5332 + "sulfur": 2000 }, { "group": "melee", @@ -219997,7 +226337,7 @@ "time": 202.8, "timeString": "3 min 22 sec", "fuel": null, - "sulfur": 3639 + "sulfur": 1365 }, { "group": "guns", @@ -220033,7 +226373,7 @@ "time": 245.825, "timeString": "4 min 5 sec", "fuel": null, - "sulfur": 5719 + "sulfur": 2145 }, { "group": "melee", @@ -220088,10 +226428,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 7, + "quantity": 5, "quantityTypeId": null, - "time": 506, - "timeString": "8 min 26 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -220225,7 +226565,7 @@ "time": 157.85, "timeString": "2 min 37 sec", "fuel": null, - "sulfur": 4999 + "sulfur": 1875 }, { "group": "guns", @@ -220285,7 +226625,7 @@ "time": 162.625, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 7500 + "sulfur": 2501 }, { "group": "guns", @@ -220294,8 +226634,8 @@ "caption": "Pistol Bullet", "quantity": 500, "quantityTypeId": "785728077", - "time": 127.9, - "timeString": "2 min 7 sec", + "time": 112.3, + "timeString": "1 min 52 sec", "fuel": null, "sulfur": 1250 }, @@ -220306,8 +226646,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 190, "quantityTypeId": "51984655", - "time": 71.2, - "timeString": "1 min 11 sec", + "time": 67.3, + "timeString": "1 min 7 sec", "fuel": null, "sulfur": 1583 }, @@ -220318,10 +226658,10 @@ "caption": "HV Pistol Ammo", "quantity": 500, "quantityTypeId": "-1691396643", - "time": 127.9, - "timeString": "2 min 7 sec", + "time": 112.3, + "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -220513,7 +226853,7 @@ "time": 125.4, "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 5332 + "sulfur": 2000 }, { "group": "melee", @@ -220598,8 +226938,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -220623,7 +226963,7 @@ "time": 100, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 340 + "sulfur": 204 }, { "group": "melee", @@ -220767,7 +227107,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -220827,7 +227167,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -221115,7 +227455,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -221199,7 +227539,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -221271,7 +227611,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -221319,7 +227659,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -221367,7 +227707,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -221415,7 +227755,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -221499,7 +227839,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -221549,6 +227889,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -221595,7 +227959,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -221715,7 +228079,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -221751,7 +228115,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -221806,10 +228170,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -221943,7 +228307,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -222003,7 +228367,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -222012,8 +228376,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -222024,8 +228388,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 127, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 53.2, + "timeString": "53 sec", "fuel": null, "sulfur": 1058 }, @@ -222036,10 +228400,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -222231,7 +228595,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -222329,7 +228693,7 @@ "time": 28, "timeString": "28 sec", "fuel": null, - "sulfur": 100 + "sulfur": 60 }, { "group": "melee", @@ -222449,7 +228813,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -222509,7 +228873,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -222713,7 +229077,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -222797,7 +229161,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -222869,7 +229233,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -222917,7 +229281,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -222965,7 +229329,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -223013,7 +229377,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -223097,7 +229461,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -223123,6 +229487,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "guns", "which": null, @@ -223157,7 +229533,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -223265,7 +229641,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -223301,7 +229677,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -223445,7 +229821,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -223505,7 +229881,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -223541,7 +229917,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -223733,7 +230109,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -223794,8 +230170,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -223819,7 +230195,7 @@ "time": 100, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 340 + "sulfur": 204 }, { "group": "melee", @@ -223963,7 +230339,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -224023,7 +230399,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -224311,7 +230687,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -224395,7 +230771,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -224467,7 +230843,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -224515,7 +230891,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -224563,7 +230939,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -224611,7 +230987,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -224695,7 +231071,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -224745,6 +231121,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -224791,7 +231191,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -224911,7 +231311,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -224947,7 +231347,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -225002,10 +231402,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -225139,7 +231539,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -225199,7 +231599,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -225208,8 +231608,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -225220,8 +231620,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 127, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 53.2, + "timeString": "53 sec", "fuel": null, "sulfur": 1058 }, @@ -225232,10 +231632,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -225427,7 +231827,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -225512,8 +231912,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -225537,7 +231937,7 @@ "time": 40, "timeString": "40 sec", "fuel": null, - "sulfur": 140 + "sulfur": 84 }, { "group": "melee", @@ -225681,7 +232081,7 @@ "time": 3.8657, "timeString": "3 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "explosive", @@ -225741,7 +232141,7 @@ "time": 43.8, "timeString": "43 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "melee", @@ -226029,7 +232429,7 @@ "time": 9.7375, "timeString": "9 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -226113,7 +232513,7 @@ "time": 3.25, "timeString": "3 sec", "fuel": null, - "sulfur": 540 + "sulfur": 180 }, { "group": "melee", @@ -226185,7 +232585,7 @@ "time": 48, "timeString": "48 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "guns", @@ -226233,7 +232633,7 @@ "time": 8.32, "timeString": "8 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -226281,7 +232681,7 @@ "time": 2.76, "timeString": "2 sec", "fuel": null, - "sulfur": 480 + "sulfur": 160 }, { "group": "guns", @@ -226329,7 +232729,7 @@ "time": 8.15, "timeString": "8 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "guns", @@ -226413,7 +232813,7 @@ "time": 9.43, "timeString": "9 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "melee", @@ -226463,6 +232863,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "-1211166256", + "time": 3.9, + "timeString": "3 sec", + "fuel": null, + "sulfur": 133 + }, { "group": "explosive", "which": null, @@ -226509,7 +232933,7 @@ "time": 7.8, "timeString": "7 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -226629,7 +233053,7 @@ "time": 18.45, "timeString": "18 sec", "fuel": null, - "sulfur": 373 + "sulfur": 140 }, { "group": "guns", @@ -226665,7 +233089,7 @@ "time": 23.475, "timeString": "23 sec", "fuel": null, - "sulfur": 573 + "sulfur": 215 }, { "group": "melee", @@ -226722,8 +233146,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 10, - "timeString": "10 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -226857,7 +233281,7 @@ "time": 13.8, "timeString": "13 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -226917,7 +233341,7 @@ "time": 14.925, "timeString": "14 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -226926,8 +233350,8 @@ "caption": "Pistol Bullet", "quantity": 50, "quantityTypeId": "785728077", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, "sulfur": 125 }, @@ -226950,10 +233374,10 @@ "caption": "HV Pistol Ammo", "quantity": 50, "quantityTypeId": "-1691396643", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -227145,7 +233569,7 @@ "time": 8.94, "timeString": "8 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -227230,8 +233654,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -227255,7 +233679,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -227399,7 +233823,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -227459,7 +233883,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -227747,7 +234171,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -227831,7 +234255,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -227903,7 +234327,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -227951,7 +234375,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -227999,7 +234423,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -228047,7 +234471,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -228131,7 +234555,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -228181,6 +234605,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -228227,7 +234675,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -228347,7 +234795,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -228383,7 +234831,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -228440,8 +234888,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -228575,7 +235023,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -228635,7 +235083,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -228656,8 +235104,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -228671,7 +235119,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -228863,7 +235311,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -228944,12 +235392,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 540, + "quantity": 270, "quantityTypeId": null, - "time": 3234, - "timeString": "53 min 54 sec", - "fuel": 136620, - "sulfur": 329400 + "time": 1614, + "timeString": "26 min 54 sec", + "fuel": 20250, + "sulfur": 81000 }, { "group": "explosive", @@ -228973,7 +235421,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -229117,7 +235565,7 @@ "time": 34.929, "timeString": "34 sec", "fuel": null, - "sulfur": 2700 + "sulfur": 900 }, { "group": "explosive", @@ -229177,7 +235625,7 @@ "time": 212.1, "timeString": "3 min 32 sec", "fuel": null, - "sulfur": 1700 + "sulfur": 567 }, { "group": "melee", @@ -229573,7 +236021,7 @@ "time": 43.9875, "timeString": "43 sec", "fuel": null, - "sulfur": 2253 + "sulfur": 845 }, { "group": "guns", @@ -229657,7 +236105,7 @@ "time": 21, "timeString": "21 sec", "fuel": null, - "sulfur": 2360 + "sulfur": 787 }, { "group": "melee", @@ -229729,7 +236177,7 @@ "time": 224.8, "timeString": "3 min 44 sec", "fuel": null, - "sulfur": 1700 + "sulfur": 567 }, { "group": "guns", @@ -229777,7 +236225,7 @@ "time": 39.56, "timeString": "39 sec", "fuel": null, - "sulfur": 3380 + "sulfur": 1127 }, { "group": "guns", @@ -229825,7 +236273,7 @@ "time": 19.74, "timeString": "19 sec", "fuel": null, - "sulfur": 2080 + "sulfur": 694 }, { "group": "guns", @@ -229873,7 +236321,7 @@ "time": 41.9, "timeString": "41 sec", "fuel": null, - "sulfur": 2700 + "sulfur": 900 }, { "group": "guns", @@ -229957,7 +236405,7 @@ "time": 42.51, "timeString": "42 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 750 }, { "group": "melee", @@ -230007,6 +236455,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 3375, + "quantityTypeId": null, + "time": 412.2, + "timeString": "6 min 52 sec", + "fuel": 3375, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 180, + "quantityTypeId": "-1211166256", + "time": 17.9, + "timeString": "17 sec", + "fuel": null, + "sulfur": 599 + }, { "group": "explosive", "which": null, @@ -230053,7 +236525,7 @@ "time": 37.4, "timeString": "37 sec", "fuel": null, - "sulfur": 2399 + "sulfur": 900 }, { "group": "guns", @@ -230197,7 +236669,7 @@ "time": 90.3, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 1640 + "sulfur": 615 }, { "group": "guns", @@ -230233,7 +236705,7 @@ "time": 111, "timeString": "1 min 51 sec", "fuel": null, - "sulfur": 2573 + "sulfur": 965 }, { "group": "melee", @@ -230290,8 +236762,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 455, - "timeString": "7 min 35 sec", + "time": 343, + "timeString": "5 min 43 sec", "fuel": null, "sulfur": null }, @@ -230425,7 +236897,7 @@ "time": 69.2, "timeString": "1 min 9 sec", "fuel": null, - "sulfur": 2253 + "sulfur": 845 }, { "group": "guns", @@ -230485,7 +236957,7 @@ "time": 71.65, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 3380 + "sulfur": 1127 }, { "group": "guns", @@ -230494,8 +236966,8 @@ "caption": "Pistol Bullet", "quantity": 225, "quantityTypeId": "785728077", - "time": 57.5, - "timeString": "57 sec", + "time": 49.7, + "timeString": "49 sec", "fuel": null, "sulfur": 563 }, @@ -230506,8 +236978,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 213, "quantityTypeId": "51984655", - "time": 52.4, - "timeString": "52 sec", + "time": 48.5, + "timeString": "48 sec", "fuel": null, "sulfur": 1774 }, @@ -230518,10 +236990,10 @@ "caption": "HV Pistol Ammo", "quantity": 225, "quantityTypeId": "-1691396643", - "time": 57.5, - "timeString": "57 sec", + "time": 49.7, + "timeString": "49 sec", "fuel": null, - "sulfur": 2999 + "sulfur": 1125 }, { "group": "guns", @@ -230737,7 +237209,7 @@ "time": 54.23, "timeString": "54 sec", "fuel": null, - "sulfur": 2399 + "sulfur": 900 }, { "group": "melee", @@ -230834,8 +237306,8 @@ "quantityTypeId": null, "time": 41.103210160714, "timeString": "41 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -230859,7 +237331,7 @@ "time": 22, "timeString": "22 sec", "fuel": null, - "sulfur": 80 + "sulfur": 48 }, { "group": "melee", @@ -231003,7 +237475,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -231063,7 +237535,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -231459,7 +237931,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -231543,7 +238015,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -231615,7 +238087,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -231663,7 +238135,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -231711,7 +238183,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -231759,7 +238231,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -231843,7 +238315,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -231893,6 +238365,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 509, + "quantityTypeId": null, + "time": 78.5, + "timeString": "1 min 18 sec", + "fuel": 509, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -231939,7 +238435,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "guns", @@ -232083,7 +238579,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -232119,7 +238615,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -232176,8 +238672,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 67, - "timeString": "1 min 7 sec", + "time": 34, + "timeString": "34 sec", "fuel": null, "sulfur": null }, @@ -232311,7 +238807,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -232371,7 +238867,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -232380,8 +238876,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -232392,8 +238888,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 202, "quantityTypeId": "51984655", - "time": 76.3, - "timeString": "1 min 16 sec", + "time": 68.5, + "timeString": "1 min 8 sec", "fuel": null, "sulfur": 1683 }, @@ -232404,10 +238900,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -232623,7 +239119,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -232720,8 +239216,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -232745,7 +239241,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -232889,7 +239385,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -232949,7 +239445,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -233237,7 +239733,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -233321,7 +239817,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -233393,7 +239889,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -233441,7 +239937,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -233489,7 +239985,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -233537,7 +240033,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -233621,7 +240117,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -233671,6 +240167,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -233717,7 +240237,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -233837,7 +240357,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -233873,7 +240393,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -233930,8 +240450,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 4, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -234065,7 +240585,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -234125,7 +240645,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -234161,7 +240681,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -234353,7 +240873,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -234438,8 +240958,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -234463,7 +240983,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -234607,7 +241127,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -234667,7 +241187,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -234955,7 +241475,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -235039,7 +241559,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -235111,7 +241631,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -235159,7 +241679,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -235207,7 +241727,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -235255,7 +241775,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -235339,7 +241859,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -235389,6 +241909,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -235435,7 +241979,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -235555,7 +242099,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -235591,7 +242135,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -235648,8 +242192,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -235783,7 +242327,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -235843,7 +242387,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -235879,7 +242423,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -236071,7 +242615,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -236156,8 +242700,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -236181,7 +242725,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -236325,7 +242869,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -236385,7 +242929,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -236673,7 +243217,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -236757,7 +243301,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -236829,7 +243373,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -236877,7 +243421,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -236925,7 +243469,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -236973,7 +243517,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -237057,7 +243601,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -237107,6 +243651,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -237153,7 +243721,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -237273,7 +243841,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -237309,7 +243877,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -237366,8 +243934,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 4, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -237501,7 +244069,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -237561,7 +244129,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -237597,7 +244165,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -237789,7 +244357,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -237874,8 +244442,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -237899,7 +244467,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -238043,7 +244611,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -238103,7 +244671,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -238391,7 +244959,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -238475,7 +245043,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -238547,7 +245115,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -238595,7 +245163,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -238643,7 +245211,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -238691,7 +245259,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -238775,7 +245343,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -238825,6 +245393,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -238871,7 +245463,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -238991,7 +245583,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -239027,7 +245619,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -239084,8 +245676,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -239219,7 +245811,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -239279,7 +245871,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -239300,8 +245892,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -239315,7 +245907,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -239507,7 +246099,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -239592,8 +246184,8 @@ "quantityTypeId": null, "time": 4.9323852192856, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -239617,7 +246209,7 @@ "time": 82, "timeString": "1 min 22 sec", "fuel": null, - "sulfur": 280 + "sulfur": 168 }, { "group": "melee", @@ -239761,7 +246353,7 @@ "time": 12.1314, "timeString": "12 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "explosive", @@ -239821,7 +246413,7 @@ "time": 92.6, "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "melee", @@ -240109,7 +246701,7 @@ "time": 19.475, "timeString": "19 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -240193,7 +246785,7 @@ "time": 6.5, "timeString": "6 sec", "fuel": null, - "sulfur": 1060 + "sulfur": 354 }, { "group": "melee", @@ -240265,7 +246857,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -240313,7 +246905,7 @@ "time": 16.64, "timeString": "16 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -240361,7 +246953,7 @@ "time": 5.52, "timeString": "5 sec", "fuel": null, - "sulfur": 940 + "sulfur": 313 }, { "group": "guns", @@ -240409,7 +247001,7 @@ "time": 16.475, "timeString": "16 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "guns", @@ -240493,7 +247085,7 @@ "time": 18.86, "timeString": "18 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -240543,6 +247135,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 62, + "quantityTypeId": null, + "time": 23.6, + "timeString": "23 sec", + "fuel": 62, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 80, + "quantityTypeId": "-1211166256", + "time": 7.9, + "timeString": "7 sec", + "fuel": null, + "sulfur": 266 + }, { "group": "explosive", "which": null, @@ -240589,7 +247205,7 @@ "time": 15.7, "timeString": "15 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -240709,7 +247325,7 @@ "time": 40.5, "timeString": "40 sec", "fuel": null, - "sulfur": 733 + "sulfur": 275 }, { "group": "guns", @@ -240745,7 +247361,7 @@ "time": 47.125, "timeString": "47 sec", "fuel": null, - "sulfur": 1146 + "sulfur": 430 }, { "group": "melee", @@ -240802,8 +247418,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 20, - "timeString": "20 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -240937,7 +247553,7 @@ "time": 30.35, "timeString": "30 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -240997,7 +247613,7 @@ "time": 29.85, "timeString": "29 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -241006,8 +247622,8 @@ "caption": "Pistol Bullet", "quantity": 100, "quantityTypeId": "785728077", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 250 }, @@ -241030,10 +247646,10 @@ "caption": "HV Pistol Ammo", "quantity": 100, "quantityTypeId": "-1691396643", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -241225,7 +247841,7 @@ "time": 21.88, "timeString": "21 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -241310,8 +247926,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -241335,7 +247951,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -241479,7 +248095,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -241539,7 +248155,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -241827,7 +248443,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -241911,7 +248527,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -241983,7 +248599,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -242031,7 +248647,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -242079,7 +248695,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -242127,7 +248743,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -242211,7 +248827,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -242261,6 +248877,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -242307,7 +248947,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -242427,7 +249067,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -242463,7 +249103,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -242520,8 +249160,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -242655,7 +249295,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -242715,7 +249355,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -242736,8 +249376,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -242751,7 +249391,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -242943,7 +249583,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -243028,8 +249668,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -243053,7 +249693,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -243197,7 +249837,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -243257,7 +249897,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -243653,7 +250293,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -243737,7 +250377,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -243809,7 +250449,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -243857,7 +250497,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -243905,7 +250545,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -243953,7 +250593,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -244037,7 +250677,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -244087,6 +250727,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -244133,7 +250797,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -244277,7 +250941,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -244313,7 +250977,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -244370,8 +251034,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 3, + "timeString": "3 sec", "fuel": null, "sulfur": null }, @@ -244505,7 +251169,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -244565,7 +251229,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -244601,7 +251265,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -244817,7 +251481,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -244910,12 +251574,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 6, - "timeString": "6 sec", - "fuel": 506, - "sulfur": 1220 + "time": 1, + "timeString": "1 sec", + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -244939,7 +251603,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -245083,7 +251747,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -245143,7 +251807,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -245539,7 +252203,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -245623,7 +252287,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -245695,7 +252359,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -245743,7 +252407,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -245791,7 +252455,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -245839,7 +252503,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -245923,7 +252587,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "melee", @@ -245973,6 +252637,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 10, + "quantityTypeId": null, + "time": 1, + "timeString": "1 sec", + "fuel": 10, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 3 + }, { "group": "explosive", "which": null, @@ -246019,7 +252707,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -246163,7 +252851,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -246199,7 +252887,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "melee", @@ -246256,8 +252944,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 2, - "timeString": "2 sec", + "time": 1, + "timeString": "1 sec", "fuel": null, "sulfur": null }, @@ -246391,7 +253079,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -246451,7 +253139,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -246487,7 +253175,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -246703,7 +253391,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "melee", @@ -246800,8 +253488,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -246825,7 +253513,7 @@ "time": 28, "timeString": "28 sec", "fuel": null, - "sulfur": 100 + "sulfur": 60 }, { "group": "melee", @@ -246969,7 +253657,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -247029,7 +253717,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -247317,7 +254005,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -247401,7 +254089,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -247473,7 +254161,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -247521,7 +254209,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -247569,7 +254257,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -247617,7 +254305,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -247701,7 +254389,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -247751,6 +254439,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -247797,7 +254509,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -247917,7 +254629,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -247953,7 +254665,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -248010,8 +254722,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 4, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -248145,7 +254857,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -248205,7 +254917,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -248241,7 +254953,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -248433,7 +255145,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -248518,8 +255230,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -248543,7 +255255,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -248687,7 +255399,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -248747,7 +255459,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -249035,7 +255747,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -249119,7 +255831,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -249191,7 +255903,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -249239,7 +255951,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -249287,7 +255999,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -249335,7 +256047,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -249419,7 +256131,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -249469,6 +256181,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -249515,7 +256251,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -249635,7 +256371,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -249671,7 +256407,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -249728,8 +256464,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -249863,7 +256599,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -249923,7 +256659,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -249944,8 +256680,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -249959,7 +256695,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -250151,7 +256887,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -250232,12 +256968,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 420, + "quantity": 210, "quantityTypeId": null, - "time": 2514, - "timeString": "41 min 54 sec", - "fuel": 106260, - "sulfur": 256200 + "time": 1254, + "timeString": "20 min 54 sec", + "fuel": 15750, + "sulfur": 63000 }, { "group": "explosive", @@ -250261,7 +256997,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -250405,7 +257141,7 @@ "time": 26.6633, "timeString": "26 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "explosive", @@ -250465,7 +257201,7 @@ "time": 163.3, "timeString": "2 min 43 sec", "fuel": null, - "sulfur": 1320 + "sulfur": 440 }, { "group": "melee", @@ -250861,7 +257597,7 @@ "time": 34.25, "timeString": "34 sec", "fuel": null, - "sulfur": 1760 + "sulfur": 660 }, { "group": "guns", @@ -250945,7 +257681,7 @@ "time": 17.75, "timeString": "17 sec", "fuel": null, - "sulfur": 1840 + "sulfur": 614 }, { "group": "melee", @@ -251017,7 +257753,7 @@ "time": 174.2, "timeString": "2 min 54 sec", "fuel": null, - "sulfur": 1320 + "sulfur": 440 }, { "group": "guns", @@ -251065,7 +257801,7 @@ "time": 31.24, "timeString": "31 sec", "fuel": null, - "sulfur": 2640 + "sulfur": 880 }, { "group": "guns", @@ -251113,7 +257849,7 @@ "time": 9.6, "timeString": "9 sec", "fuel": null, - "sulfur": 1620 + "sulfur": 540 }, { "group": "guns", @@ -251161,7 +257897,7 @@ "time": 33.575, "timeString": "33 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -251245,7 +257981,7 @@ "time": 33.08, "timeString": "33 sec", "fuel": null, - "sulfur": 1560 + "sulfur": 585 }, { "group": "melee", @@ -251295,6 +258031,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 2625, + "quantityTypeId": null, + "time": 320.2, + "timeString": "5 min 20 sec", + "fuel": 2625, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 140, + "quantityTypeId": "-1211166256", + "time": 13.9, + "timeString": "13 sec", + "fuel": null, + "sulfur": 466 + }, { "group": "explosive", "which": null, @@ -251341,7 +258101,7 @@ "time": 29.5, "timeString": "29 sec", "fuel": null, - "sulfur": 1866 + "sulfur": 700 }, { "group": "guns", @@ -251485,7 +258245,7 @@ "time": 68.25, "timeString": "1 min 8 sec", "fuel": null, - "sulfur": 1280 + "sulfur": 480 }, { "group": "guns", @@ -251521,7 +258281,7 @@ "time": 84.125, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 750 }, { "group": "melee", @@ -251578,8 +258338,8 @@ "caption": null, "quantity": 5, "quantityTypeId": null, - "time": 354, - "timeString": "5 min 54 sec", + "time": 267, + "timeString": "4 min 27 sec", "fuel": null, "sulfur": null }, @@ -251713,7 +258473,7 @@ "time": 55.4, "timeString": "55 sec", "fuel": null, - "sulfur": 1760 + "sulfur": 660 }, { "group": "guns", @@ -251773,7 +258533,7 @@ "time": 56.725, "timeString": "56 sec", "fuel": null, - "sulfur": 2640 + "sulfur": 880 }, { "group": "guns", @@ -251782,8 +258542,8 @@ "caption": "Pistol Bullet", "quantity": 175, "quantityTypeId": "785728077", - "time": 44.7, - "timeString": "44 sec", + "time": 36.9, + "timeString": "36 sec", "fuel": null, "sulfur": 438 }, @@ -251794,8 +258554,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 166, "quantityTypeId": "51984655", - "time": 39.9, - "timeString": "39 sec", + "time": 36, + "timeString": "36 sec", "fuel": null, "sulfur": 1383 }, @@ -251806,10 +258566,10 @@ "caption": "HV Pistol Ammo", "quantity": 175, "quantityTypeId": "-1691396643", - "time": 44.7, - "timeString": "44 sec", + "time": 36.9, + "timeString": "36 sec", "fuel": null, - "sulfur": 2333 + "sulfur": 875 }, { "group": "guns", @@ -252025,7 +258785,7 @@ "time": 41.29, "timeString": "41 sec", "fuel": null, - "sulfur": 1866 + "sulfur": 700 }, { "group": "melee", @@ -252135,7 +258895,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "explosive", @@ -252382,10 +259142,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 10, + "quantity": 9, "quantityTypeId": null, - "time": 676, - "timeString": "11 min 16 sec", + "time": 508, + "timeString": "8 min 28 sec", "fuel": null, "sulfur": null }, @@ -252545,7 +259305,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -252665,7 +259425,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -252725,7 +259485,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -252929,7 +259689,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -253013,7 +259773,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -253085,7 +259845,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -253133,7 +259893,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -253181,7 +259941,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -253229,7 +259989,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -253313,7 +260073,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -253339,6 +260099,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "guns", "which": null, @@ -253373,7 +260145,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -253481,7 +260253,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -253517,7 +260289,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -253661,7 +260433,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -253721,7 +260493,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -253757,7 +260529,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -253949,7 +260721,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -254023,7 +260795,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -254143,7 +260915,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -254203,7 +260975,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -254407,7 +261179,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -254491,7 +261263,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -254563,7 +261335,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -254611,7 +261383,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -254659,7 +261431,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -254707,7 +261479,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -254791,7 +261563,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -254817,6 +261589,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "guns", "which": null, @@ -254851,7 +261635,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -254959,7 +261743,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -254995,7 +261779,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -255139,7 +261923,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -255199,7 +261983,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -255235,7 +262019,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -255427,7 +262211,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -255484,12 +262268,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 288, + "quantity": 144, "quantityTypeId": null, - "time": 1722, - "timeString": "28 min 42 sec", - "fuel": 72864, - "sulfur": 175680 + "time": 858, + "timeString": "14 min 18 sec", + "fuel": 10800, + "sulfur": 43200 }, { "group": "explosive", @@ -255513,7 +262297,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -255657,7 +262441,7 @@ "time": 17.9977, "timeString": "17 sec", "fuel": null, - "sulfur": 1440 + "sulfur": 480 }, { "group": "explosive", @@ -255717,7 +262501,7 @@ "time": 111.1, "timeString": "1 min 51 sec", "fuel": null, - "sulfur": 900 + "sulfur": 300 }, { "group": "melee", @@ -256113,7 +262897,7 @@ "time": 21.1625, "timeString": "21 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 450 }, { "group": "guns", @@ -256197,7 +262981,7 @@ "time": 14.125, "timeString": "14 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -256269,7 +263053,7 @@ "time": 117.6, "timeString": "1 min 57 sec", "fuel": null, - "sulfur": 900 + "sulfur": 300 }, { "group": "guns", @@ -256317,7 +263101,7 @@ "time": 18.44, "timeString": "18 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 600 }, { "group": "guns", @@ -256365,7 +263149,7 @@ "time": 6.6, "timeString": "6 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 374 }, { "group": "guns", @@ -256413,7 +263197,7 @@ "time": 21.65, "timeString": "21 sec", "fuel": null, - "sulfur": 1440 + "sulfur": 480 }, { "group": "guns", @@ -256497,7 +263281,7 @@ "time": 23.05, "timeString": "23 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -256547,6 +263331,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1800, + "quantityTypeId": null, + "time": 217.3, + "timeString": "3 min 37 sec", + "fuel": 1800, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 96, + "quantityTypeId": "-1211166256", + "time": 9.5, + "timeString": "9 sec", + "fuel": null, + "sulfur": 320 + }, { "group": "explosive", "which": null, @@ -256593,7 +263401,7 @@ "time": 21.2, "timeString": "21 sec", "fuel": null, - "sulfur": 1280 + "sulfur": 480 }, { "group": "guns", @@ -256737,7 +263545,7 @@ "time": 45.75, "timeString": "45 sec", "fuel": null, - "sulfur": 880 + "sulfur": 330 }, { "group": "guns", @@ -256773,7 +263581,7 @@ "time": 56.55, "timeString": "56 sec", "fuel": null, - "sulfur": 1373 + "sulfur": 515 }, { "group": "melee", @@ -256830,8 +263638,8 @@ "caption": null, "quantity": 4, "quantityTypeId": null, - "time": 243, - "timeString": "4 min 3 sec", + "time": 183, + "timeString": "3 min 3 sec", "fuel": null, "sulfur": null }, @@ -256965,7 +263773,7 @@ "time": 35.35, "timeString": "35 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 450 }, { "group": "guns", @@ -257025,7 +263833,7 @@ "time": 36.7, "timeString": "36 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 600 }, { "group": "guns", @@ -257034,8 +263842,8 @@ "caption": "Pistol Bullet", "quantity": 120, "quantityTypeId": "785728077", - "time": 27.5, - "timeString": "27 sec", + "time": 23.6, + "timeString": "23 sec", "fuel": null, "sulfur": 300 }, @@ -257046,8 +263854,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 114, "quantityTypeId": "51984655", - "time": 26.9, - "timeString": "26 sec", + "time": 23, + "timeString": "23 sec", "fuel": null, "sulfur": 950 }, @@ -257058,10 +263866,10 @@ "caption": "HV Pistol Ammo", "quantity": 120, "quantityTypeId": "-1691396643", - "time": 27.5, - "timeString": "27 sec", + "time": 23.6, + "timeString": "23 sec", "fuel": null, - "sulfur": 1600 + "sulfur": 600 }, { "group": "guns", @@ -257277,7 +264085,7 @@ "time": 27.83, "timeString": "27 sec", "fuel": null, - "sulfur": 1280 + "sulfur": 480 }, { "group": "melee", @@ -257374,8 +264182,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -257399,7 +264207,7 @@ "time": 136, "timeString": "2 min 16 sec", "fuel": null, - "sulfur": 460 + "sulfur": 276 }, { "group": "melee", @@ -257543,7 +264351,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -257603,7 +264411,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -257891,7 +264699,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -257975,7 +264783,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -258047,7 +264855,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -258095,7 +264903,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -258143,7 +264951,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -258191,7 +264999,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -258275,7 +265083,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -258325,6 +265133,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -258371,7 +265203,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -258491,7 +265323,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -258527,7 +265359,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -258584,8 +265416,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 34, - "timeString": "34 sec", + "time": 17, + "timeString": "17 sec", "fuel": null, "sulfur": null }, @@ -258719,7 +265551,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -258779,7 +265611,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -258788,8 +265620,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -258812,10 +265644,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -259007,7 +265839,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -259092,8 +265924,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -259117,7 +265949,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -259261,7 +266093,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -259321,7 +266153,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -259609,7 +266441,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -259693,7 +266525,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -259765,7 +266597,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -259813,7 +266645,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -259861,7 +266693,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -259909,7 +266741,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -259993,7 +266825,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -260043,6 +266875,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -260089,7 +266945,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -260209,7 +267065,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -260245,7 +267101,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -260302,8 +267158,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 34, - "timeString": "34 sec", + "time": 25, + "timeString": "25 sec", "fuel": null, "sulfur": null }, @@ -260437,7 +267293,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -260497,7 +267353,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -260506,8 +267362,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -260530,10 +267386,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -260725,7 +267581,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -260782,10 +267638,10 @@ "which": null, "toolId": "349762871", "caption": null, - "quantity": 10, + "quantity": 8, "quantityTypeId": null, - "time": 9.2, - "timeString": "9 sec", + "time": 8.4, + "timeString": "8 sec", "fuel": null, "sulfur": null }, @@ -260823,17 +267679,17 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", "which": null, "toolId": "-2073432256", "caption": null, - "quantity": 24, + "quantity": 4, "quantityTypeId": null, - "time": 373, - "timeString": "6 min 13 sec", + "time": 61.8, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": null }, @@ -260842,10 +267698,10 @@ "which": null, "toolId": "-2073432256", "caption": "Throw", - "quantity": 40, + "quantity": 7, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 250.5, + "timeString": "4 min 10 sec", "fuel": null, "sulfur": null }, @@ -260866,10 +267722,10 @@ "which": null, "toolId": "-196667575", "caption": null, - "quantity": 52, + "quantity": 7, "quantityTypeId": null, - "time": 718, - "timeString": "11 min 58 sec", + "time": 118, + "timeString": "1 min 58 sec", "fuel": null, "sulfur": null }, @@ -260878,10 +267734,10 @@ "which": null, "toolId": "1488979457", "caption": null, - "quantity": 9, + "quantity": 2, "quantityTypeId": null, - "time": 108.05, - "timeString": "1 min 48 sec", + "time": 17.8, + "timeString": "17 sec", "fuel": null, "sulfur": null }, @@ -260892,8 +267748,8 @@ "caption": "Workbench Refill", "quantity": 1, "quantityTypeId": null, - "time": 130.05, - "timeString": "2 min 10 sec", + "time": 19.8, + "timeString": "19 sec", "fuel": null, "sulfur": null }, @@ -260902,10 +267758,10 @@ "which": null, "toolId": "-1536855921", "caption": null, - "quantity": 39, + "quantity": 6, "quantityTypeId": null, - "time": 1038, - "timeString": "17 min 18 sec", + "time": 172, + "timeString": "2 min 52 sec", "fuel": null, "sulfur": null }, @@ -260914,10 +267770,10 @@ "which": null, "toolId": "-1536855921", "caption": "Throw", - "quantity": 20, + "quantity": 4, "quantityTypeId": null, - "time": 747, - "timeString": "12 min 27 sec", + "time": 126, + "timeString": "2 min 6 sec", "fuel": null, "sulfur": null }, @@ -260967,19 +267823,19 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", "which": null, "toolId": "1840822026", "caption": null, - "quantity": 19, + "quantity": 10, "quantityTypeId": null, - "time": 26.55, - "timeString": "26 sec", + "time": 15.75, + "timeString": "15 sec", "fuel": null, - "sulfur": 2280 + "sulfur": 1200 }, { "group": "guns", @@ -261027,17 +267883,17 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", "which": null, "toolId": "1711033574", "caption": null, - "quantity": 34, + "quantity": 5, "quantityTypeId": null, - "time": 616.8, - "timeString": "10 min 16 sec", + "time": 101.3, + "timeString": "1 min 41 sec", "fuel": null, "sulfur": null }, @@ -261046,10 +267902,10 @@ "which": null, "toolId": "1711033574", "caption": "Throw", - "quantity": 42, + "quantity": 7, "quantityTypeId": null, - "time": 1251, - "timeString": "20 min 51 sec", + "time": 208.5, + "timeString": "3 min 28 sec", "fuel": null, "sulfur": null }, @@ -261058,10 +267914,10 @@ "which": null, "toolId": "1814288539", "caption": null, - "quantity": 25, + "quantity": 4, "quantityTypeId": null, - "time": 461.5, - "timeString": "7 min 41 sec", + "time": 76.5, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": null }, @@ -261070,10 +267926,10 @@ "which": null, "toolId": "1814288539", "caption": "Throw", - "quantity": 40, + "quantity": 7, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 250.5, + "timeString": "4 min 10 sec", "fuel": null, "sulfur": null }, @@ -261082,10 +267938,10 @@ "which": null, "toolId": "1104520648", "caption": null, - "quantity": 27, + "quantity": 4, "quantityTypeId": null, - "time": 192.8, - "timeString": "3 min 12 sec", + "time": 30.8, + "timeString": "30 sec", "fuel": null, "sulfur": null }, @@ -261094,10 +267950,10 @@ "which": null, "toolId": "-1978999529", "caption": null, - "quantity": 8, + "quantity": 2, "quantityTypeId": null, - "time": 341, - "timeString": "5 min 41 sec", + "time": 57, + "timeString": "57 sec", "fuel": null, "sulfur": null }, @@ -261106,10 +267962,10 @@ "which": null, "toolId": "-1978999529", "caption": "Throw", - "quantity": 6, + "quantity": 1, "quantityTypeId": null, - "time": 501, - "timeString": "8 min 21 sec", + "time": 84, + "timeString": "1 min 24 sec", "fuel": null, "sulfur": null }, @@ -261214,12 +268070,12 @@ "which": null, "toolId": "143803535", "caption": null, - "quantity": 58, + "quantity": 15, "quantityTypeId": null, - "time": 72.1, - "timeString": "1 min 12 sec", + "time": 20.5, + "timeString": "20 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 900 }, { "group": "guns", @@ -261255,7 +268111,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -261274,10 +268130,10 @@ "which": null, "toolId": "-1252059217", "caption": null, - "quantity": 6, + "quantity": 1, "quantityTypeId": null, - "time": 365, - "timeString": "6 min 5 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -261286,10 +268142,10 @@ "which": null, "toolId": "-1252059217", "caption": "Throw", - "quantity": 7, + "quantity": 2, "quantityTypeId": null, - "time": 1000.5, - "timeString": "16 min 40 sec", + "time": 168, + "timeString": "2 min 48 sec", "fuel": null, "sulfur": null }, @@ -261339,17 +268195,17 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", "which": null, "toolId": "2040726127", "caption": null, - "quantity": 21, + "quantity": 3, "quantityTypeId": null, - "time": 220.2, - "timeString": "3 min 40 sec", + "time": 35.6, + "timeString": "35 sec", "fuel": null, "sulfur": null }, @@ -261358,10 +268214,10 @@ "which": null, "toolId": "2040726127", "caption": "Throw", - "quantity": 8, + "quantity": 2, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 51, + "timeString": "51 sec", "fuel": null, "sulfur": null }, @@ -261411,7 +268267,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -261459,7 +268315,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -261507,7 +268363,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -261555,7 +268411,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -261639,17 +268495,17 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", "which": null, "toolId": "-1966748496", "caption": null, - "quantity": 10, + "quantity": 2, "quantityTypeId": null, - "time": 343, - "timeString": "5 min 43 sec", + "time": 57, + "timeString": "57 sec", "fuel": null, "sulfur": null }, @@ -261658,10 +268514,10 @@ "which": null, "toolId": "-1966748496", "caption": "Throw", - "quantity": 7, + "quantity": 2, "quantityTypeId": null, - "time": 501, - "timeString": "8 min 21 sec", + "time": 84, + "timeString": "1 min 24 sec", "fuel": null, "sulfur": null }, @@ -261670,10 +268526,10 @@ "which": null, "toolId": "-1137865085", "caption": null, - "quantity": 11, + "quantity": 2, "quantityTypeId": null, - "time": 296, - "timeString": "4 min 56 sec", + "time": 49, + "timeString": "49 sec", "fuel": null, "sulfur": null }, @@ -261682,13 +268538,25 @@ "which": null, "toolId": "-1137865085", "caption": "Throw", - "quantity": 10, + "quantity": 2, "quantityTypeId": null, - "time": 750, - "timeString": "12 min 30 sec", + "time": 126, + "timeString": "2 min 6 sec", "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "guns", "which": null, @@ -261723,17 +268591,17 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", "which": null, "toolId": "1491189398", "caption": null, - "quantity": 8, + "quantity": 1, "quantityTypeId": null, - "time": 424.5, - "timeString": "7 min 4 sec", + "time": 70, + "timeString": "1 min 10 sec", "fuel": null, "sulfur": null }, @@ -261742,10 +268610,10 @@ "which": null, "toolId": "-1302129395", "caption": null, - "quantity": 6, + "quantity": 1, "quantityTypeId": null, - "time": 506, - "timeString": "8 min 26 sec", + "time": 84, + "timeString": "1 min 24 sec", "fuel": null, "sulfur": null }, @@ -261754,10 +268622,10 @@ "which": null, "toolId": "-1302129395", "caption": "Throw", - "quantity": 5, + "quantity": 1, "quantityTypeId": null, - "time": 750, - "timeString": "12 min 30 sec", + "time": 126, + "timeString": "2 min 6 sec", "fuel": null, "sulfur": null }, @@ -261843,7 +268711,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -261879,17 +268747,17 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", "which": null, "toolId": "963906841", "caption": null, - "quantity": 29, + "quantity": 4, "quantityTypeId": null, - "time": 1328, - "timeString": "22 min 8 sec", + "time": 220.1, + "timeString": "3 min 40 sec", "fuel": null, "sulfur": null }, @@ -261898,10 +268766,10 @@ "which": null, "toolId": "963906841", "caption": "Throw", - "quantity": 40, + "quantity": 7, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 250.5, + "timeString": "4 min 10 sec", "fuel": null, "sulfur": null }, @@ -261910,10 +268778,10 @@ "which": null, "toolId": "-262590403", "caption": null, - "quantity": 5, + "quantity": 1, "quantityTypeId": null, - "time": 316.5, - "timeString": "5 min 16 sec", + "time": 52.5, + "timeString": "52 sec", "fuel": null, "sulfur": null }, @@ -261922,10 +268790,10 @@ "which": null, "toolId": "-262590403", "caption": "Throw", - "quantity": 4, + "quantity": 1, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 100.5, + "timeString": "1 min 40 sec", "fuel": null, "sulfur": null }, @@ -261934,10 +268802,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 1, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 28, + "timeString": "28 sec", "fuel": null, "sulfur": null }, @@ -261946,10 +268814,10 @@ "which": null, "toolId": "-1506397857", "caption": "Throw", - "quantity": 4, + "quantity": 1, "quantityTypeId": null, - "time": 750, - "timeString": "12 min 30 sec", + "time": 126, + "timeString": "2 min 6 sec", "fuel": null, "sulfur": null }, @@ -261958,10 +268826,10 @@ "which": null, "toolId": "-1780802565", "caption": null, - "quantity": 5, + "quantity": 1, "quantityTypeId": null, - "time": 316.5, - "timeString": "5 min 16 sec", + "time": 52.5, + "timeString": "52 sec", "fuel": null, "sulfur": null }, @@ -261970,10 +268838,10 @@ "which": null, "toolId": "-1780802565", "caption": "Throw", - "quantity": 6, + "quantity": 1, "quantityTypeId": null, - "time": 1000.5, - "timeString": "16 min 40 sec", + "time": 168, + "timeString": "2 min 48 sec", "fuel": null, "sulfur": null }, @@ -262071,7 +268939,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -262131,7 +268999,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -262140,8 +269008,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -262152,8 +269020,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 334, "quantityTypeId": "51984655", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 2782 }, @@ -262164,10 +269032,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -262222,10 +269090,10 @@ "which": null, "toolId": "-1583967946", "caption": null, - "quantity": 26, + "quantity": 4, "quantityTypeId": null, - "time": 625.3, - "timeString": "10 min 25 sec", + "time": 103.8, + "timeString": "1 min 43 sec", "fuel": null, "sulfur": null }, @@ -262234,10 +269102,10 @@ "which": null, "toolId": "-1583967946", "caption": "Throw", - "quantity": 40, + "quantity": 7, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 250.5, + "timeString": "4 min 10 sec", "fuel": null, "sulfur": null }, @@ -262246,10 +269114,10 @@ "which": null, "toolId": "171931394", "caption": null, - "quantity": 25, + "quantity": 4, "quantityTypeId": null, - "time": 554.1, - "timeString": "9 min 14 sec", + "time": 92.1, + "timeString": "1 min 32 sec", "fuel": null, "sulfur": null }, @@ -262258,10 +269126,10 @@ "which": null, "toolId": "171931394", "caption": "Throw", - "quantity": 40, + "quantity": 7, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 250.5, + "timeString": "4 min 10 sec", "fuel": null, "sulfur": null }, @@ -262270,10 +269138,10 @@ "which": null, "toolId": "1602646136", "caption": null, - "quantity": 26, + "quantity": 4, "quantityTypeId": null, - "time": 454, - "timeString": "7 min 34 sec", + "time": 75, + "timeString": "1 min 15 sec", "fuel": null, "sulfur": null }, @@ -262282,10 +269150,10 @@ "which": null, "toolId": "-1469578201", "caption": null, - "quantity": 8, + "quantity": 2, "quantityTypeId": null, - "time": 275, - "timeString": "4 min 35 sec", + "time": 47, + "timeString": "47 sec", "fuel": null, "sulfur": null }, @@ -262294,10 +269162,10 @@ "which": null, "toolId": "-1469578201", "caption": "Throw", - "quantity": 6, + "quantity": 1, "quantityTypeId": null, - "time": 501, - "timeString": "8 min 21 sec", + "time": 84, + "timeString": "1 min 24 sec", "fuel": null, "sulfur": null }, @@ -262306,10 +269174,10 @@ "which": null, "toolId": "1326180354", "caption": null, - "quantity": 6, + "quantity": 1, "quantityTypeId": null, - "time": 255, - "timeString": "4 min 15 sec", + "time": 42.5, + "timeString": "42 sec", "fuel": null, "sulfur": null }, @@ -262318,10 +269186,10 @@ "which": null, "toolId": "1326180354", "caption": "Throw", - "quantity": 6, + "quantity": 1, "quantityTypeId": null, - "time": 750, - "timeString": "12 min 30 sec", + "time": 126, + "timeString": "2 min 6 sec", "fuel": null, "sulfur": null }, @@ -262359,18 +269227,18 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", "which": null, "toolId": "795236088", "caption": null, - "quantity": 77, + "quantity": 12, "quantityTypeId": null, - "time": 2676, - "timeString": "44 min 36 sec", - "fuel": 77, + "time": 445.2, + "timeString": "7 min 25 sec", + "fuel": 12, "sulfur": null }, { @@ -262378,11 +269246,11 @@ "which": null, "toolId": "795236088", "caption": "Lit", - "quantity": 286, + "quantity": 48, "quantityTypeId": null, - "time": 2885, - "timeString": "48 min 5 sec", - "fuel": 286, + "time": 481.2, + "timeString": "8 min 1 sec", + "fuel": 48, "sulfur": null }, { @@ -262390,10 +269258,10 @@ "which": null, "toolId": "1540934679", "caption": null, - "quantity": 23, + "quantity": 3, "quantityTypeId": null, - "time": 622, - "timeString": "10 min 22 sec", + "time": 102.5, + "timeString": "1 min 42 sec", "fuel": null, "sulfur": null } @@ -262444,8 +269312,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -262469,7 +269337,7 @@ "time": 100, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 340 + "sulfur": 204 }, { "group": "melee", @@ -262613,7 +269481,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -262673,7 +269541,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -262961,7 +269829,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -263045,7 +269913,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -263117,7 +269985,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -263165,7 +270033,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -263213,7 +270081,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -263261,7 +270129,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -263345,7 +270213,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -263395,6 +270263,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -263441,7 +270333,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -263561,7 +270453,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -263597,7 +270489,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -263652,10 +270544,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -263789,7 +270681,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -263849,7 +270741,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -263858,8 +270750,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -263870,8 +270762,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 127, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 53.2, + "timeString": "53 sec", "fuel": null, "sulfur": 1058 }, @@ -263882,10 +270774,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -264077,7 +270969,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -264175,7 +271067,7 @@ "time": 28, "timeString": "28 sec", "fuel": null, - "sulfur": 100 + "sulfur": 60 }, { "group": "melee", @@ -264295,7 +271187,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -264355,7 +271247,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -264559,7 +271451,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -264643,7 +271535,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -264715,7 +271607,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -264763,7 +271655,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -264811,7 +271703,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -264859,7 +271751,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -264943,7 +271835,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -264969,6 +271861,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "guns", "which": null, @@ -265003,7 +271907,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -265111,7 +272015,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -265147,7 +272051,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -265291,7 +272195,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -265351,7 +272255,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -265387,7 +272291,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -265579,7 +272483,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -265600,7 +272504,7 @@ "which": null, "toolId": "-1843426638", "caption": null, - "quantity": 1, + "quantity": 2, "quantityTypeId": null, "time": 0, "timeString": "0 sec", @@ -265612,10 +272516,10 @@ "which": null, "toolId": "349762871", "caption": null, - "quantity": 4, + "quantity": 12, "quantityTypeId": null, - "time": 1.2, - "timeString": "1 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -265624,12 +272528,12 @@ "which": null, "toolId": "-742865266", "caption": null, - "quantity": 1, + "quantity": 2, "quantityTypeId": null, - "time": 1, - "timeString": "1 sec", - "fuel": 30, - "sulfur": 1400 + "time": 6, + "timeString": "6 sec", + "fuel": 60, + "sulfur": 2800 }, { "group": "explosive", @@ -265638,44 +272542,44 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 3.2882568128571, - "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "time": 32.882568128571, + "timeString": "32 sec", + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", "which": null, "toolId": "-1841918730", "caption": null, - "quantity": 5, + "quantity": 13, "quantityTypeId": null, - "time": 24, - "timeString": "24 sec", + "time": 72, + "timeString": "1 min 12 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 2600 }, { "group": "torpedo", "which": null, "toolId": "-1671551935", "caption": null, - "quantity": 10, + "quantity": 33, "quantityTypeId": null, - "time": 58, - "timeString": "58 sec", + "time": 196, + "timeString": "3 min 16 sec", "fuel": null, - "sulfur": 200 + "sulfur": 396 }, { "group": "melee", "which": null, "toolId": "-2073432256", "caption": null, - "quantity": 1, + "quantity": 48, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 747, + "timeString": "12 min 27 sec", "fuel": null, "sulfur": null }, @@ -265684,7 +272588,7 @@ "which": null, "toolId": "-2073432256", "caption": "Throw", - "quantity": 2, + "quantity": 80, "quantityTypeId": null, "time": null, "timeString": null, @@ -265708,10 +272612,10 @@ "which": null, "toolId": "-196667575", "caption": null, - "quantity": 2, + "quantity": 103, "quantityTypeId": null, - "time": 28, - "timeString": "28 sec", + "time": 1436, + "timeString": "23 min 56 sec", "fuel": null, "sulfur": null }, @@ -265720,10 +272624,10 @@ "which": null, "toolId": "1488979457", "caption": null, - "quantity": 1, + "quantity": 18, "quantityTypeId": null, - "time": 4.05, - "timeString": "4 sec", + "time": 217.1, + "timeString": "3 min 37 sec", "fuel": null, "sulfur": null }, @@ -265734,8 +272638,8 @@ "caption": "Workbench Refill", "quantity": 1, "quantityTypeId": null, - "time": 4.05, - "timeString": "4 sec", + "time": 317.1, + "timeString": "5 min 17 sec", "fuel": null, "sulfur": null }, @@ -265744,10 +272648,10 @@ "which": null, "toolId": "-1536855921", "caption": null, - "quantity": 2, + "quantity": 79, "quantityTypeId": null, - "time": 41, - "timeString": "41 sec", + "time": 2078, + "timeString": "34 min 38 sec", "fuel": null, "sulfur": null }, @@ -265756,10 +272660,10 @@ "which": null, "toolId": "-1536855921", "caption": "Throw", - "quantity": 1, + "quantity": 39, "quantityTypeId": null, - "time": 30, - "timeString": "30 sec", + "time": 1429.5, + "timeString": "23 min 49 sec", "fuel": null, "sulfur": null }, @@ -265768,118 +272672,118 @@ "which": null, "toolId": "1545779598", "caption": "5.56 Rifle Ammo", - "quantity": 40, + "quantity": 400, "quantityTypeId": "-1211166256", - "time": 9.4654, - "timeString": "9 sec", + "time": 108.6538, + "timeString": "1 min 48 sec", "fuel": null, - "sulfur": 133 + "sulfur": 1332 }, { "group": "guns", "which": null, "toolId": "1545779598", "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 20, + "quantity": 67, "quantityTypeId": "-1321651331", - "time": 2.5327, - "timeString": "2 sec", + "time": 17.3312, + "timeString": "17 sec", "fuel": null, - "sulfur": 500 + "sulfur": 1675 }, { "group": "guns", "which": null, "toolId": "1545779598", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 25, + "quantity": 250, "quantityTypeId": "605467368", - "time": 3.1992, - "timeString": "3 sec", + "time": 67.3253, + "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 313 + "sulfur": 3125 }, { "group": "guns", "which": null, "toolId": "1545779598", "caption": "HV 5.56 Rifle Ammo", - "quantity": 40, + "quantity": 400, "quantityTypeId": "1712070256", - "time": 9.4654, - "timeString": "9 sec", + "time": 108.6538, + "timeString": "1 min 48 sec", "fuel": null, - "sulfur": 800 + "sulfur": 2668 }, { "group": "explosive", "which": null, "toolId": "1840822026", "caption": null, - "quantity": 4, + "quantity": 24, "quantityTypeId": null, - "time": 8.55, - "timeString": "8 sec", + "time": 32.55, + "timeString": "32 sec", "fuel": null, - "sulfur": 480 + "sulfur": 2880 }, { "group": "guns", "which": null, "toolId": "1588298435", "caption": "5.56 Rifle Ammo", - "quantity": 25, + "quantity": 250, "quantityTypeId": "-1211166256", - "time": null, - "timeString": null, + "time": 627.9, + "timeString": "10 min 27 sec", "fuel": null, - "sulfur": 83 + "sulfur": 833 }, { "group": "guns", "which": null, "toolId": "1588298435", "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 16, + "quantity": 61, "quantityTypeId": "-1321651331", - "time": 35.4, - "timeString": "35 sec", + "time": 151.5, + "timeString": "2 min 31 sec", "fuel": null, - "sulfur": 400 + "sulfur": 1525 }, { "group": "guns", "which": null, "toolId": "1588298435", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 16, + "quantity": 157, "quantityTypeId": "605467368", - "time": 35.4, - "timeString": "35 sec", + "time": 393.9, + "timeString": "6 min 33 sec", "fuel": null, - "sulfur": 200 + "sulfur": 1963 }, { "group": "guns", "which": null, "toolId": "1588298435", "caption": "HV 5.56 Rifle Ammo", - "quantity": 25, + "quantity": 250, "quantityTypeId": "1712070256", - "time": null, - "timeString": null, + "time": 627.9, + "timeString": "10 min 27 sec", "fuel": null, - "sulfur": 500 + "sulfur": 1668 }, { "group": "melee", "which": null, "toolId": "1711033574", "caption": null, - "quantity": 1, + "quantity": 70, "quantityTypeId": null, - "time": 23.8, - "timeString": "23 sec", + "time": 1235.9, + "timeString": "20 min 35 sec", "fuel": null, "sulfur": null }, @@ -265888,10 +272792,10 @@ "which": null, "toolId": "1711033574", "caption": "Throw", - "quantity": 2, + "quantity": 84, "quantityTypeId": null, - "time": 51, - "timeString": "51 sec", + "time": 2500.5, + "timeString": "41 min 40 sec", "fuel": null, "sulfur": null }, @@ -265900,10 +272804,10 @@ "which": null, "toolId": "1814288539", "caption": null, - "quantity": 1, + "quantity": 53, "quantityTypeId": null, - "time": 17.5, - "timeString": "17 sec", + "time": 927, + "timeString": "15 min 27 sec", "fuel": null, "sulfur": null }, @@ -265912,7 +272816,7 @@ "which": null, "toolId": "1814288539", "caption": "Throw", - "quantity": 2, + "quantity": 80, "quantityTypeId": null, "time": null, "timeString": null, @@ -265924,11 +272828,11 @@ "which": null, "toolId": "14241751", "caption": "Hunting Bow", - "quantity": 5, + "quantity": 45, "quantityTypeId": null, - "time": 16.5, - "timeString": "16 sec", - "fuel": 25, + "time": 56.5, + "timeString": "56 sec", + "fuel": 225, "sulfur": null }, { @@ -265936,11 +272840,11 @@ "which": null, "toolId": "1443579727", "caption": "Fire Arrow", - "quantity": 5, + "quantity": 45, "quantityTypeId": "14241751", - "time": 16.5, - "timeString": "16 sec", - "fuel": 25, + "time": 56.5, + "timeString": "56 sec", + "fuel": 225, "sulfur": null }, { @@ -265948,10 +272852,10 @@ "which": null, "toolId": "1104520648", "caption": null, - "quantity": 1, + "quantity": 56, "quantityTypeId": null, - "time": 6.8, - "timeString": "6 sec", + "time": 388.4, + "timeString": "6 min 28 sec", "fuel": null, "sulfur": null }, @@ -265960,10 +272864,10 @@ "which": null, "toolId": "-1978999529", "caption": null, - "quantity": 1, + "quantity": 17, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 684, + "timeString": "11 min 24 sec", "fuel": null, "sulfur": null }, @@ -265972,10 +272876,10 @@ "which": null, "toolId": "-1978999529", "caption": "Throw", - "quantity": 1, + "quantity": 11, "quantityTypeId": null, - "time": 21, - "timeString": "21 sec", + "time": 1000.5, + "timeString": "16 min 40 sec", "fuel": null, "sulfur": null }, @@ -265984,11 +272888,11 @@ "which": null, "toolId": "884424049", "caption": "Fire Arrow", - "quantity": 5, + "quantity": 45, "quantityTypeId": "14241751", - "time": 31.5, - "timeString": "31 sec", - "fuel": 25, + "time": 191.5, + "timeString": "3 min 11 sec", + "fuel": 225, "sulfur": null }, { @@ -265996,11 +272900,11 @@ "which": null, "toolId": "1965232394", "caption": "Fire Arrow", - "quantity": 5, + "quantity": 45, "quantityTypeId": "14241751", - "time": 26.9, - "timeString": "26 sec", - "fuel": 25, + "time": 170.9, + "timeString": "2 min 50 sec", + "fuel": 225, "sulfur": null }, { @@ -266008,119 +272912,119 @@ "which": null, "toolId": "-765183617", "caption": "Handmade Shell", - "quantity": 12, + "quantity": 112, "quantityTypeId": "588596902", - "time": 30.5, - "timeString": "30 sec", + "time": 330.5, + "timeString": "5 min 30 sec", "fuel": null, - "sulfur": 60 + "sulfur": 560 }, { "group": "guns", "which": null, "toolId": "-765183617", "caption": "12 Gauge Buckshot", - "quantity": 10, + "quantity": 96, "quantityTypeId": "-1685290200", - "time": 24.5, - "timeString": "24 sec", + "time": 282.5, + "timeString": "4 min 42 sec", "fuel": null, - "sulfur": 100 + "sulfur": 960 }, { "group": "guns", "which": null, "toolId": "-765183617", "caption": "12 Gauge Incendiary Shell", - "quantity": 2, + "quantity": 16, "quantityTypeId": "-1036635990", - "time": 13, - "timeString": "13 sec", + "time": 55, + "timeString": "55 sec", "fuel": null, - "sulfur": 40 + "sulfur": 320 }, { "group": "guns", "which": null, "toolId": "-765183617", "caption": "12 Gauge Slug", - "quantity": 25, + "quantity": 250, "quantityTypeId": "-727717969", - "time": 72, - "timeString": "1 min 12 sec", + "time": 744.5, + "timeString": "12 min 24 sec", "fuel": null, - "sulfur": 250 + "sulfur": 2500 }, { "group": "guns", "which": null, "toolId": "-75944661", "caption": "Handmade Shell", - "quantity": 12, + "quantity": 112, "quantityTypeId": "588596902", - "time": 30.16, - "timeString": "30 sec", + "time": 298.16, + "timeString": "4 min 58 sec", "fuel": null, - "sulfur": 60 + "sulfur": 560 }, { "group": "guns", "which": null, "toolId": "-75944661", "caption": "12 Gauge Buckshot", - "quantity": 10, + "quantity": 96, "quantityTypeId": "-1685290200", - "time": 24.8, - "timeString": "24 sec", + "time": 255.28, + "timeString": "4 min 15 sec", "fuel": null, - "sulfur": 100 + "sulfur": 960 }, { "group": "guns", "which": null, "toolId": "-75944661", "caption": "12 Gauge Incendiary Shell", - "quantity": 2, + "quantity": 16, "quantityTypeId": "-1036635990", - "time": 15.86, - "timeString": "15 sec", + "time": 53.38, + "timeString": "53 sec", "fuel": null, - "sulfur": 40 + "sulfur": 320 }, { "group": "guns", "which": null, "toolId": "-75944661", "caption": "12 Gauge Slug", - "quantity": 25, + "quantity": 250, "quantityTypeId": "-727717969", - "time": 65, - "timeString": "1 min 5 sec", + "time": 668, + "timeString": "11 min 8 sec", "fuel": null, - "sulfur": 250 + "sulfur": 2500 }, { "group": "explosive", "which": null, "toolId": "143803535", "caption": null, - "quantity": 4, + "quantity": 115, "quantityTypeId": null, - "time": 7.3, - "timeString": "7 sec", + "time": 140.5, + "timeString": "2 min 20 sec", "fuel": null, - "sulfur": 240 + "sulfur": 6900 }, { "group": "explosive", "which": null, "toolId": "-1215753368", "caption": null, - "quantity": 33, + "quantity": 330, "quantityTypeId": null, - "time": 20.7, - "timeString": "20 sec", - "fuel": 33, + "time": null, + "timeString": null, + "fuel": 330, "sulfur": null }, { @@ -266128,46 +273032,46 @@ "which": null, "toolId": "1914691295", "caption": "Pistol Bullet", - "quantity": 50, + "quantity": 500, "quantityTypeId": "785728077", - "time": 11.0875, - "timeString": "11 sec", + "time": 131.4, + "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 125 + "sulfur": 1250 }, { "group": "guns", "which": null, "toolId": "1914691295", "caption": "Incendiary Pistol Bullet", - "quantity": 21, + "quantity": 210, "quantityTypeId": "51984655", - "time": 30.0375, - "timeString": "30 sec", + "time": 79.175, + "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 175 + "sulfur": 1749 }, { "group": "guns", "which": null, "toolId": "1914691295", "caption": "HV Pistol Ammo", - "quantity": 50, + "quantity": 500, "quantityTypeId": "-1691396643", - "time": 11.0875, - "timeString": "11 sec", + "time": 131.4, + "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 2500 }, { "group": "guns", "which": null, "toolId": "-1123473824", "caption": "40mm Shotgun Round", - "quantity": 8, + "quantity": 75, "quantityTypeId": "1055319033", - "time": 8.4, - "timeString": "8 sec", + "time": 96.8, + "timeString": "1 min 36 sec", "fuel": null, "sulfur": null }, @@ -266176,10 +273080,10 @@ "which": null, "toolId": "-1252059217", "caption": null, - "quantity": 1, + "quantity": 12, "quantityTypeId": null, - "time": 14.4, - "timeString": "14 sec", + "time": 731, + "timeString": "12 min 11 sec", "fuel": null, "sulfur": null }, @@ -266188,10 +273092,10 @@ "which": null, "toolId": "-1252059217", "caption": "Throw", - "quantity": 1, + "quantity": 14, "quantityTypeId": null, - "time": 40.5, - "timeString": "40 sec", + "time": 2001, + "timeString": "33 min 21 sec", "fuel": null, "sulfur": null }, @@ -266200,58 +273104,58 @@ "which": null, "toolId": "-1214542497", "caption": "5.56 Rifle Ammo", - "quantity": 35, + "quantity": 348, "quantityTypeId": "-1211166256", - "time": 4.25, - "timeString": "4 sec", + "time": 75.25, + "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 117 + "sulfur": 1159 }, { "group": "guns", "which": null, "toolId": "-1214542497", "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 19, + "quantity": 65, "quantityTypeId": "-1321651331", - "time": 2.25, - "timeString": "2 sec", + "time": 14.375, + "timeString": "14 sec", "fuel": null, - "sulfur": 475 + "sulfur": 1625 }, { "group": "guns", "which": null, "toolId": "-1214542497", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 22, + "quantity": 218, "quantityTypeId": "605467368", - "time": 2.625, - "timeString": "2 sec", + "time": 46.25, + "timeString": "46 sec", "fuel": null, - "sulfur": 275 + "sulfur": 2725 }, { "group": "guns", "which": null, "toolId": "-1214542497", "caption": "HV 5.56 Rifle Ammo", - "quantity": 35, + "quantity": 348, "quantityTypeId": "1712070256", - "time": 4.25, - "timeString": "4 sec", + "time": 75.25, + "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 700 + "sulfur": 2321 }, { "group": "melee", "which": null, "toolId": "2040726127", "caption": null, - "quantity": 1, + "quantity": 44, "quantityTypeId": null, - "time": 8.4, - "timeString": "8 sec", + "time": 443.4, + "timeString": "7 min 23 sec", "fuel": null, "sulfur": null }, @@ -266260,10 +273164,10 @@ "which": null, "toolId": "2040726127", "caption": "Throw", - "quantity": 1, + "quantity": 16, "quantityTypeId": null, - "time": 12, - "timeString": "12 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -266272,286 +273176,286 @@ "which": null, "toolId": "-778367295", "caption": "5.56 Rifle Ammo", - "quantity": 25, + "quantity": 250, "quantityTypeId": "-1211166256", - "time": 64, - "timeString": "1 min 4 sec", + "time": 667, + "timeString": "11 min 7 sec", "fuel": null, - "sulfur": 83 + "sulfur": 833 }, { "group": "guns", "which": null, "toolId": "-778367295", "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 16, + "quantity": 61, "quantityTypeId": "-1321651331", - "time": 40.2, - "timeString": "40 sec", + "time": 160.8, + "timeString": "2 min 40 sec", "fuel": null, - "sulfur": 400 + "sulfur": 1525 }, { "group": "guns", "which": null, "toolId": "-778367295", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 16, + "quantity": 157, "quantityTypeId": "605467368", - "time": 40.2, - "timeString": "40 sec", + "time": 418, + "timeString": "6 min 58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 1963 }, { "group": "guns", "which": null, "toolId": "-778367295", "caption": "HV 5.56 Rifle Ammo", - "quantity": 25, + "quantity": 250, "quantityTypeId": "1712070256", - "time": 64, - "timeString": "1 min 4 sec", + "time": 667, + "timeString": "11 min 7 sec", "fuel": null, - "sulfur": 500 + "sulfur": 1668 }, { "group": "guns", "which": null, "toolId": "-1812555177", "caption": "5.56 Rifle Ammo", - "quantity": 50, + "quantity": 500, "quantityTypeId": "-1211166256", - "time": 9.76, - "timeString": "9 sec", + "time": 121.96, + "timeString": "2 min 1 sec", "fuel": null, - "sulfur": 167 + "sulfur": 1665 }, { "group": "guns", "which": null, "toolId": "-1812555177", "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 23, + "quantity": 69, "quantityTypeId": "-1321651331", - "time": 2.64, - "timeString": "2 sec", + "time": 15.92, + "timeString": "15 sec", "fuel": null, - "sulfur": 575 + "sulfur": 1725 }, { "group": "guns", "which": null, "toolId": "-1812555177", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 32, + "quantity": 313, "quantityTypeId": "605467368", - "time": 7.6, - "timeString": "7 sec", + "time": 76.24, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 400 + "sulfur": 3913 }, { "group": "guns", "which": null, "toolId": "-1812555177", "caption": "HV 5.56 Rifle Ammo", - "quantity": 50, + "quantity": 500, "quantityTypeId": "1712070256", - "time": 9.76, - "timeString": "9 sec", + "time": 121.96, + "timeString": "2 min 1 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 3335 }, { "group": "guns", "which": null, "toolId": "-2069578888", "caption": "5.56 Rifle Ammo", - "quantity": 31, + "quantity": 308, "quantityTypeId": "-1211166256", - "time": 3.6, - "timeString": "3 sec", + "time": 58.98, + "timeString": "58 sec", "fuel": null, - "sulfur": 103 + "sulfur": 1026 }, { "group": "guns", "which": null, "toolId": "-2069578888", "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 18, + "quantity": 64, "quantityTypeId": "-1321651331", - "time": 2.04, - "timeString": "2 sec", + "time": 7.56, + "timeString": "7 sec", "fuel": null, - "sulfur": 450 + "sulfur": 1600 }, { "group": "guns", "which": null, "toolId": "-2069578888", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 20, + "quantity": 193, "quantityTypeId": "605467368", - "time": 2.28, - "timeString": "2 sec", + "time": 30.42, + "timeString": "30 sec", "fuel": null, - "sulfur": 250 + "sulfur": 2413 }, { "group": "guns", "which": null, "toolId": "-2069578888", "caption": "HV 5.56 Rifle Ammo", - "quantity": 31, + "quantity": 308, "quantityTypeId": "1712070256", - "time": 3.6, - "timeString": "3 sec", + "time": 58.98, + "timeString": "58 sec", "fuel": null, - "sulfur": 620 + "sulfur": 2054 }, { "group": "guns", "which": null, "toolId": "28201841", "caption": "5.56 Rifle Ammo", - "quantity": 40, + "quantity": 400, "quantityTypeId": "-1211166256", - "time": 9.9, - "timeString": "9 sec", + "time": 128.25, + "timeString": "2 min 8 sec", "fuel": null, - "sulfur": 133 + "sulfur": 1332 }, { "group": "guns", "which": null, "toolId": "28201841", "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 20, + "quantity": 67, "quantityTypeId": "-1321651331", - "time": 3.325, - "timeString": "3 sec", + "time": 20.775, + "timeString": "20 sec", "fuel": null, - "sulfur": 500 + "sulfur": 1675 }, { "group": "guns", "which": null, "toolId": "28201841", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 25, + "quantity": 250, "quantityTypeId": "605467368", - "time": 7.275, - "timeString": "7 sec", + "time": 80.475, + "timeString": "1 min 20 sec", "fuel": null, - "sulfur": 313 + "sulfur": 3125 }, { "group": "guns", "which": null, "toolId": "28201841", "caption": "HV 5.56 Rifle Ammo", - "quantity": 40, + "quantity": 400, "quantityTypeId": "1712070256", - "time": 9.9, - "timeString": "9 sec", + "time": 128.25, + "timeString": "2 min 8 sec", "fuel": null, - "sulfur": 800 + "sulfur": 2668 }, { "group": "guns", "which": null, "toolId": "678698219", "caption": "Handmade Shell", - "quantity": 14, + "quantity": 139, "quantityTypeId": "588596902", - "time": 14.9, - "timeString": "14 sec", + "time": 167.9, + "timeString": "2 min 47 sec", "fuel": null, - "sulfur": 70 + "sulfur": 695 }, { "group": "guns", "which": null, "toolId": "678698219", "caption": "12 Gauge Buckshot", - "quantity": 12, + "quantity": 120, "quantityTypeId": "-1685290200", - "time": 8.8, - "timeString": "8 sec", + "time": 140.2, + "timeString": "2 min 20 sec", "fuel": null, - "sulfur": 120 + "sulfur": 1200 }, { "group": "guns", "which": null, "toolId": "678698219", "caption": "12 Gauge Incendiary Shell", - "quantity": 2, + "quantity": 17, "quantityTypeId": "-1036635990", - "time": 12.8, - "timeString": "12 sec", + "time": 28.3, + "timeString": "28 sec", "fuel": null, - "sulfur": 40 + "sulfur": 340 }, { "group": "guns", "which": null, "toolId": "678698219", "caption": "12 Gauge Slug", - "quantity": 32, + "quantity": 313, "quantityTypeId": "-727717969", - "time": 36.8, - "timeString": "36 sec", + "time": 379.6, + "timeString": "6 min 19 sec", "fuel": null, - "sulfur": 320 + "sulfur": 3130 }, { "group": "guns", "which": null, "toolId": "-852563019", "caption": "Pistol Bullet", - "quantity": 45, + "quantity": 445, "quantityTypeId": "785728077", - "time": 11.08, - "timeString": "11 sec", + "time": 131.56, + "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 113 + "sulfur": 1113 }, { "group": "guns", "which": null, "toolId": "-852563019", "caption": "Incendiary Pistol Bullet", - "quantity": 20, + "quantity": 194, "quantityTypeId": "51984655", - "time": 30.09, - "timeString": "30 sec", + "time": 80.83, + "timeString": "1 min 20 sec", "fuel": null, - "sulfur": 167 + "sulfur": 1616 }, { "group": "guns", "which": null, "toolId": "-852563019", "caption": "HV Pistol Ammo", - "quantity": 45, + "quantity": 445, "quantityTypeId": "-1691396643", - "time": 11.08, - "timeString": "11 sec", + "time": 131.56, + "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 2225 }, { "group": "melee", "which": null, "toolId": "-1966748496", "caption": null, - "quantity": 1, + "quantity": 21, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 688, + "timeString": "11 min 28 sec", "fuel": null, "sulfur": null }, @@ -266560,10 +273464,10 @@ "which": null, "toolId": "-1966748496", "caption": "Throw", - "quantity": 1, + "quantity": 14, "quantityTypeId": null, - "time": 21, - "timeString": "21 sec", + "time": 1000.5, + "timeString": "16 min 40 sec", "fuel": null, "sulfur": null }, @@ -266572,10 +273476,10 @@ "which": null, "toolId": "-1137865085", "caption": null, - "quantity": 1, + "quantity": 22, "quantityTypeId": null, - "time": 12, - "timeString": "12 sec", + "time": 593, + "timeString": "9 min 53 sec", "fuel": null, "sulfur": null }, @@ -266584,23 +273488,47 @@ "which": null, "toolId": "-1137865085", "caption": "Throw", - "quantity": 1, + "quantity": 20, "quantityTypeId": null, - "time": 30, - "timeString": "30 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 407, + "quantityTypeId": null, + "time": 64.9, + "timeString": "1 min 4 sec", + "fuel": 407, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 534, + "quantityTypeId": "-1211166256", + "time": 56.7, + "timeString": "56 sec", + "fuel": null, + "sulfur": 1778 + }, { "group": "explosive", "which": null, "toolId": "1556365900", "caption": null, - "quantity": 1, + "quantity": 6, "quantityTypeId": null, - "time": 18.5, - "timeString": "18 sec", - "fuel": 50, + "time": 23.5, + "timeString": "23 sec", + "fuel": 300, "sulfur": null }, { @@ -266608,46 +273536,46 @@ "which": null, "toolId": "1318558775", "caption": "Pistol Bullet", - "quantity": 54, + "quantity": 534, "quantityTypeId": "785728077", - "time": 9.2, - "timeString": "9 sec", + "time": 119.6, + "timeString": "1 min 59 sec", "fuel": null, - "sulfur": 135 + "sulfur": 1335 }, { "group": "guns", "which": null, "toolId": "1318558775", "caption": "Incendiary Pistol Bullet", - "quantity": 22, + "quantity": 220, "quantityTypeId": "51984655", - "time": 27.1, - "timeString": "27 sec", + "time": 74.2, + "timeString": "1 min 14 sec", "fuel": null, - "sulfur": 183 + "sulfur": 1833 }, { "group": "guns", "which": null, "toolId": "1318558775", "caption": "HV Pistol Ammo", - "quantity": 54, + "quantity": 534, "quantityTypeId": "-1691396643", - "time": 9.2, - "timeString": "9 sec", + "time": 119.6, + "timeString": "1 min 59 sec", "fuel": null, - "sulfur": 720 + "sulfur": 2670 }, { "group": "melee", "which": null, "toolId": "1491189398", "caption": null, - "quantity": 1, + "quantity": 16, "quantityTypeId": null, - "time": 17.5, - "timeString": "17 sec", + "time": 848.75, + "timeString": "14 min 8 sec", "fuel": null, "sulfur": null }, @@ -266656,10 +273584,10 @@ "which": null, "toolId": "-1302129395", "caption": null, - "quantity": 1, + "quantity": 12, "quantityTypeId": null, - "time": 21, - "timeString": "21 sec", + "time": 1011.5, + "timeString": "16 min 51 sec", "fuel": null, "sulfur": null }, @@ -266668,10 +273596,10 @@ "which": null, "toolId": "-1302129395", "caption": "Throw", - "quantity": 1, + "quantity": 10, "quantityTypeId": null, - "time": 30, - "timeString": "30 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -266680,130 +273608,130 @@ "which": null, "toolId": "-1367281941", "caption": "Handmade Shell", - "quantity": 12, + "quantity": 112, "quantityTypeId": "588596902", - "time": 49.5, - "timeString": "49 sec", + "time": 499.5, + "timeString": "8 min 19 sec", "fuel": null, - "sulfur": 60 + "sulfur": 560 }, { "group": "guns", "which": null, "toolId": "-1367281941", "caption": "12 Gauge Buckshot", - "quantity": 10, + "quantity": 96, "quantityTypeId": "-1685290200", - "time": 40.5, - "timeString": "40 sec", + "time": 427.5, + "timeString": "7 min 7 sec", "fuel": null, - "sulfur": 100 + "sulfur": 960 }, { "group": "guns", "which": null, "toolId": "-1367281941", "caption": "12 Gauge Incendiary Shell", - "quantity": 2, + "quantity": 16, "quantityTypeId": "-1036635990", - "time": 17, - "timeString": "17 sec", + "time": 80, + "timeString": "1 min 20 sec", "fuel": null, - "sulfur": 40 + "sulfur": 320 }, { "group": "guns", "which": null, "toolId": "-1367281941", "caption": "12 Gauge Slug", - "quantity": 25, + "quantity": 250, "quantityTypeId": "-727717969", - "time": 108, - "timeString": "1 min 48 sec", + "time": 1120.5, + "timeString": "18 min 40 sec", "fuel": null, - "sulfur": 250 + "sulfur": 2500 }, { "group": "guns", "which": null, "toolId": "1373971859", "caption": "Pistol Bullet", - "quantity": 37, + "quantity": 364, "quantityTypeId": "785728077", - "time": 27, - "timeString": "27 sec", + "time": 270.45, + "timeString": "4 min 30 sec", "fuel": null, - "sulfur": 93 + "sulfur": 910 }, { "group": "guns", "which": null, "toolId": "1373971859", "caption": "Incendiary Pistol Bullet", - "quantity": 17, + "quantity": 168, "quantityTypeId": "51984655", - "time": 34.6, - "timeString": "34 sec", + "time": 147.25, + "timeString": "2 min 27 sec", "fuel": null, - "sulfur": 142 + "sulfur": 1399 }, { "group": "guns", "which": null, "toolId": "1373971859", "caption": "HV Pistol Ammo", - "quantity": 37, + "quantity": 364, "quantityTypeId": "-1691396643", - "time": 27, - "timeString": "27 sec", + "time": 270.45, + "timeString": "4 min 30 sec", "fuel": null, - "sulfur": 493 + "sulfur": 1820 }, { "group": "guns", "which": null, "toolId": "649912614", "caption": "Pistol Bullet", - "quantity": 58, + "quantity": 572, "quantityTypeId": "785728077", - "time": 32.55, - "timeString": "32 sec", + "time": 328.9, + "timeString": "5 min 28 sec", "fuel": null, - "sulfur": 145 + "sulfur": 1430 }, { "group": "guns", "which": null, "toolId": "649912614", "caption": "Incendiary Pistol Bullet", - "quantity": 23, + "quantity": 230, "quantityTypeId": "51984655", - "time": 35.3, - "timeString": "35 sec", + "time": 155.375, + "timeString": "2 min 35 sec", "fuel": null, - "sulfur": 192 + "sulfur": 1916 }, { "group": "guns", "which": null, "toolId": "649912614", "caption": "HV Pistol Ammo", - "quantity": 58, + "quantity": 572, "quantityTypeId": "-1691396643", - "time": 32.55, - "timeString": "32 sec", + "time": 328.9, + "timeString": "5 min 28 sec", "fuel": null, - "sulfur": 773 + "sulfur": 2860 }, { "group": "melee", "which": null, "toolId": "963906841", "caption": null, - "quantity": 1, + "quantity": 59, "quantityTypeId": null, - "time": 52, - "timeString": "52 sec", + "time": 2658, + "timeString": "44 min 18 sec", "fuel": null, "sulfur": null }, @@ -266812,7 +273740,7 @@ "which": null, "toolId": "963906841", "caption": "Throw", - "quantity": 2, + "quantity": 80, "quantityTypeId": null, "time": null, "timeString": null, @@ -266824,10 +273752,10 @@ "which": null, "toolId": "-262590403", "caption": null, - "quantity": 1, + "quantity": 9, "quantityTypeId": null, - "time": 12.5, - "timeString": "12 sec", + "time": 633, + "timeString": "10 min 33 sec", "fuel": null, "sulfur": null }, @@ -266836,10 +273764,10 @@ "which": null, "toolId": "-262590403", "caption": "Throw", - "quantity": 1, + "quantity": 7, "quantityTypeId": null, - "time": 24, - "timeString": "24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -266848,10 +273776,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 1, + "quantity": 6, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 339, + "timeString": "5 min 39 sec", "fuel": null, "sulfur": null }, @@ -266860,10 +273788,10 @@ "which": null, "toolId": "-1506397857", "caption": "Throw", - "quantity": 1, + "quantity": 8, "quantityTypeId": null, - "time": 30, - "timeString": "30 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -266872,10 +273800,10 @@ "which": null, "toolId": "-1780802565", "caption": null, - "quantity": 1, + "quantity": 9, "quantityTypeId": null, - "time": 12.5, - "timeString": "12 sec", + "time": 633, + "timeString": "10 min 33 sec", "fuel": null, "sulfur": null }, @@ -266884,10 +273812,10 @@ "which": null, "toolId": "-1780802565", "caption": "Throw", - "quantity": 1, + "quantity": 11, "quantityTypeId": null, - "time": 40.5, - "timeString": "40 sec", + "time": 2001, + "timeString": "33 min 21 sec", "fuel": null, "sulfur": null }, @@ -266896,250 +273824,250 @@ "which": null, "toolId": "-1878475007", "caption": null, - "quantity": 1, + "quantity": 3, "quantityTypeId": null, - "time": 9, - "timeString": "9 sec", + "time": 12, + "timeString": "12 sec", "fuel": null, - "sulfur": 480 + "sulfur": 1440 }, { "group": "guns", "which": null, "toolId": "795371088", "caption": "Handmade Shell", - "quantity": 12, + "quantity": 112, "quantityTypeId": "588596902", - "time": 16.5, - "timeString": "16 sec", + "time": 201.3, + "timeString": "3 min 21 sec", "fuel": null, - "sulfur": 60 + "sulfur": 560 }, { "group": "guns", "which": null, "toolId": "795371088", "caption": "12 Gauge Buckshot", - "quantity": 10, + "quantity": 96, "quantityTypeId": "-1685290200", - "time": 14.3, - "timeString": "14 sec", + "time": 170.5, + "timeString": "2 min 50 sec", "fuel": null, - "sulfur": 100 + "sulfur": 960 }, { "group": "guns", "which": null, "toolId": "795371088", "caption": "12 Gauge Incendiary Shell", - "quantity": 2, + "quantity": 16, "quantityTypeId": "-1036635990", - "time": 13.6, - "timeString": "13 sec", + "time": 37.8, + "timeString": "37 sec", "fuel": null, - "sulfur": 40 + "sulfur": 320 }, { "group": "guns", "which": null, "toolId": "795371088", "caption": "12 Gauge Slug", - "quantity": 25, + "quantity": 250, "quantityTypeId": "-727717969", - "time": 44, - "timeString": "44 sec", + "time": 454.3, + "timeString": "7 min 34 sec", "fuel": null, - "sulfur": 250 + "sulfur": 2500 }, { "group": "guns", "which": null, "toolId": "818877484", "caption": "Pistol Bullet", - "quantity": 50, + "quantity": 500, "quantityTypeId": "785728077", - "time": 18.35, - "timeString": "18 sec", + "time": 209.6, + "timeString": "3 min 29 sec", "fuel": null, - "sulfur": 125 + "sulfur": 1250 }, { "group": "guns", "which": null, "toolId": "818877484", "caption": "Incendiary Pistol Bullet", - "quantity": 21, + "quantity": 210, "quantityTypeId": "51984655", - "time": 33.5, - "timeString": "33 sec", + "time": 111.35, + "timeString": "1 min 51 sec", "fuel": null, - "sulfur": 175 + "sulfur": 1749 }, { "group": "guns", "which": null, "toolId": "818877484", "caption": "HV Pistol Ammo", - "quantity": 50, + "quantity": 500, "quantityTypeId": "-1691396643", - "time": 18.35, - "timeString": "18 sec", + "time": 209.6, + "timeString": "3 min 29 sec", "fuel": null, - "sulfur": 667 + "sulfur": 2500 }, { "group": "guns", "which": null, "toolId": "-904863145", "caption": "5.56 Rifle Ammo", - "quantity": 50, + "quantity": 500, "quantityTypeId": "-1211166256", - "time": 21.25, - "timeString": "21 sec", + "time": 218.3, + "timeString": "3 min 38 sec", "fuel": null, - "sulfur": 167 + "sulfur": 1665 }, { "group": "explosive", "which": null, "toolId": "-1321651331", "caption": "Semi-Automatic Rifle", - "quantity": 23, + "quantity": 69, "quantityTypeId": null, - "time": 8.075, - "timeString": "8 sec", + "time": 28.8, + "timeString": "28 sec", "fuel": null, - "sulfur": 575 + "sulfur": 1725 }, { "group": "guns", "which": null, "toolId": "-904863145", "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 23, + "quantity": 69, "quantityTypeId": "-1321651331", - "time": 8.075, - "timeString": "8 sec", + "time": 28.8, + "timeString": "28 sec", "fuel": null, - "sulfur": 575 + "sulfur": 1725 }, { "group": "guns", "which": null, "toolId": "-904863145", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 32, + "quantity": 313, "quantityTypeId": "605467368", - "time": 9.65, - "timeString": "9 sec", + "time": 134.875, + "timeString": "2 min 14 sec", "fuel": null, - "sulfur": 400 + "sulfur": 3913 }, { "group": "guns", "which": null, "toolId": "-904863145", "caption": "HV 5.56 Rifle Ammo", - "quantity": 50, + "quantity": 500, "quantityTypeId": "1712070256", - "time": 21.25, - "timeString": "21 sec", + "time": 218.3, + "timeString": "3 min 38 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 3335 }, { "group": "guns", "which": null, "toolId": "1796682209", "caption": "Pistol Bullet", - "quantity": 67, + "quantity": 667, "quantityTypeId": "785728077", - "time": 14.4, - "timeString": "14 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, - "sulfur": 168 + "sulfur": 1668 }, { "group": "guns", "which": null, "toolId": "1796682209", "caption": "Incendiary Pistol Bullet", - "quantity": 26, + "quantity": 253, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 81.4, + "timeString": "1 min 21 sec", "fuel": null, - "sulfur": 217 + "sulfur": 2107 }, { "group": "guns", "which": null, "toolId": "1796682209", "caption": "HV Pistol Ammo", - "quantity": 67, + "quantity": 667, "quantityTypeId": "-1691396643", - "time": 14.4, - "timeString": "14 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, - "sulfur": 893 + "sulfur": 3335 }, { "group": "guns", "which": null, "toolId": "-41440462", "caption": "Handmade Shell", - "quantity": 15, + "quantity": 149, "quantityTypeId": "588596902", - "time": 14.6, - "timeString": "14 sec", + "time": 170.2, + "timeString": "2 min 50 sec", "fuel": null, - "sulfur": 75 + "sulfur": 745 }, { "group": "guns", "which": null, "toolId": "-41440462", "caption": "12 Gauge Buckshot", - "quantity": 13, + "quantity": 127, "quantityTypeId": "-1685290200", - "time": 14.1, - "timeString": "14 sec", + "time": 148.05, + "timeString": "2 min 28 sec", "fuel": null, - "sulfur": 130 + "sulfur": 1270 }, { "group": "guns", "which": null, "toolId": "-41440462", "caption": "12 Gauge Incendiary Shell", - "quantity": 2, + "quantity": 17, "quantityTypeId": "-1036635990", - "time": 12.75, - "timeString": "12 sec", + "time": 27.6, + "timeString": "27 sec", "fuel": null, - "sulfur": 40 + "sulfur": 340 }, { "group": "guns", "which": null, "toolId": "-41440462", "caption": "12 Gauge Slug", - "quantity": 34, + "quantity": 334, "quantityTypeId": "-727717969", - "time": 36, - "timeString": "36 sec", + "time": 388.5, + "timeString": "6 min 28 sec", "fuel": null, - "sulfur": 340 + "sulfur": 3340 }, { "group": "melee", "which": null, "toolId": "-1583967946", "caption": null, - "quantity": 1, + "quantity": 52, "quantityTypeId": null, - "time": 24.3, - "timeString": "24 sec", + "time": 1251.6, + "timeString": "20 min 51 sec", "fuel": null, "sulfur": null }, @@ -267148,7 +274076,7 @@ "which": null, "toolId": "-1583967946", "caption": "Throw", - "quantity": 2, + "quantity": 80, "quantityTypeId": null, "time": null, "timeString": null, @@ -267160,10 +274088,10 @@ "which": null, "toolId": "171931394", "caption": null, - "quantity": 1, + "quantity": 52, "quantityTypeId": null, - "time": 21.6, - "timeString": "21 sec", + "time": 1110.3, + "timeString": "18 min 30 sec", "fuel": null, "sulfur": null }, @@ -267172,7 +274100,7 @@ "which": null, "toolId": "171931394", "caption": "Throw", - "quantity": 2, + "quantity": 80, "quantityTypeId": null, "time": null, "timeString": null, @@ -267184,10 +274112,10 @@ "which": null, "toolId": "1602646136", "caption": null, - "quantity": 1, + "quantity": 52, "quantityTypeId": null, - "time": 18, - "timeString": "18 sec", + "time": 909, + "timeString": "15 min 9 sec", "fuel": null, "sulfur": null }, @@ -267196,10 +274124,10 @@ "which": null, "toolId": "-1469578201", "caption": null, - "quantity": 1, + "quantity": 17, "quantityTypeId": null, - "time": 12, - "timeString": "12 sec", + "time": 550, + "timeString": "9 min 10 sec", "fuel": null, "sulfur": null }, @@ -267208,10 +274136,10 @@ "which": null, "toolId": "-1469578201", "caption": "Throw", - "quantity": 1, + "quantity": 11, "quantityTypeId": null, - "time": 21, - "timeString": "21 sec", + "time": 1000.5, + "timeString": "16 min 40 sec", "fuel": null, "sulfur": null }, @@ -267220,10 +274148,10 @@ "which": null, "toolId": "1326180354", "caption": null, - "quantity": 1, + "quantity": 13, "quantityTypeId": null, - "time": 10, - "timeString": "10 sec", + "time": 512, + "timeString": "8 min 32 sec", "fuel": null, "sulfur": null }, @@ -267232,10 +274160,10 @@ "which": null, "toolId": "1326180354", "caption": "Throw", - "quantity": 1, + "quantity": 12, "quantityTypeId": null, - "time": 30, - "timeString": "30 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -267244,47 +274172,47 @@ "which": null, "toolId": "-1758372725", "caption": "Pistol Bullet", - "quantity": 54, + "quantity": 534, "quantityTypeId": "785728077", - "time": 14.63, - "timeString": "14 sec", + "time": 169.91, + "timeString": "2 min 49 sec", "fuel": null, - "sulfur": 135 + "sulfur": 1335 }, { "group": "guns", "which": null, "toolId": "-1758372725", "caption": "Incendiary Pistol Bullet", - "quantity": 22, + "quantity": 220, "quantityTypeId": "51984655", - "time": 31.6, - "timeString": "31 sec", + "time": 92.17, + "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 183 + "sulfur": 1833 }, { "group": "guns", "which": null, "toolId": "-1758372725", "caption": "HV Pistol Ammo", - "quantity": 54, + "quantity": 534, "quantityTypeId": "-1691396643", - "time": 14.63, - "timeString": "14 sec", + "time": 169.91, + "timeString": "2 min 49 sec", "fuel": null, - "sulfur": 720 + "sulfur": 2670 }, { "group": "melee", "which": null, "toolId": "795236088", "caption": null, - "quantity": 3, + "quantity": 154, "quantityTypeId": null, - "time": 106, - "timeString": "1 min 46 sec", - "fuel": 3, + "time": 5353, + "timeString": "1 hour 29 min 13 sec", + "fuel": 154, "sulfur": null }, { @@ -267292,11 +274220,11 @@ "which": null, "toolId": "795236088", "caption": "Lit", - "quantity": 10, + "quantity": 286, "quantityTypeId": null, - "time": 96.1, - "timeString": "1 min 36 sec", - "fuel": 10, + "time": 2885, + "timeString": "48 min 5 sec", + "fuel": 286, "sulfur": null }, { @@ -267304,10 +274232,10 @@ "which": null, "toolId": "1540934679", "caption": null, - "quantity": 1, + "quantity": 48, "quantityTypeId": null, - "time": 24, - "timeString": "24 sec", + "time": 1247, + "timeString": "20 min 47 sec", "fuel": null, "sulfur": null } @@ -267358,8 +274286,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -267383,7 +274311,7 @@ "time": 100, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 340 + "sulfur": 204 }, { "group": "melee", @@ -267527,7 +274455,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -267587,7 +274515,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -267875,7 +274803,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -267959,7 +274887,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -268031,7 +274959,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -268079,7 +275007,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -268127,7 +275055,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -268175,7 +275103,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -268259,7 +275187,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -268309,6 +275237,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -268355,7 +275307,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -268475,7 +275427,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -268511,7 +275463,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -268566,10 +275518,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -268703,7 +275655,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -268763,7 +275715,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -268772,8 +275724,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -268784,8 +275736,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 127, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 53.2, + "timeString": "53 sec", "fuel": null, "sulfur": 1058 }, @@ -268796,10 +275748,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -268991,7 +275943,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -269076,8 +276028,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -269101,7 +276053,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -269245,7 +276197,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -269305,7 +276257,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -269701,7 +276653,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -269785,7 +276737,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -269857,7 +276809,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -269905,7 +276857,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -269953,7 +276905,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -270001,7 +276953,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -270085,7 +277037,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -270135,6 +277087,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "explosive", "which": null, @@ -270181,7 +277157,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "guns", @@ -270325,7 +277301,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -270361,7 +277337,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -270418,8 +277394,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -270553,7 +277529,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -270613,7 +277589,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -270649,7 +277625,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -270865,7 +277841,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -270962,8 +277938,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -270987,7 +277963,7 @@ "time": 136, "timeString": "2 min 16 sec", "fuel": null, - "sulfur": 460 + "sulfur": 276 }, { "group": "melee", @@ -271131,7 +278107,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -271191,7 +278167,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -271479,7 +278455,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -271563,7 +278539,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -271635,7 +278611,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -271683,7 +278659,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -271731,7 +278707,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -271779,7 +278755,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -271863,7 +278839,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -271913,6 +278889,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -271959,7 +278959,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -272079,7 +279079,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -272115,7 +279115,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -272172,8 +279172,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 34, - "timeString": "34 sec", + "time": 17, + "timeString": "17 sec", "fuel": null, "sulfur": null }, @@ -272307,7 +279307,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -272367,7 +279367,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -272376,8 +279376,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -272400,10 +279400,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -272595,7 +279595,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -272693,7 +279693,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -272813,7 +279813,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -272873,7 +279873,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -273077,7 +280077,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -273161,7 +280161,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -273233,7 +280233,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -273281,7 +280281,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -273329,7 +280329,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -273377,7 +280377,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -273461,7 +280461,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -273487,6 +280487,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "guns", "which": null, @@ -273521,7 +280533,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -273629,7 +280641,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -273665,7 +280677,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -273809,7 +280821,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -273869,7 +280881,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -273905,7 +280917,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -274097,7 +281109,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -274158,8 +281170,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -274183,7 +281195,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -274327,7 +281339,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -274387,7 +281399,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -274675,7 +281687,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -274759,7 +281771,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -274831,7 +281843,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -274879,7 +281891,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -274927,7 +281939,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -274975,7 +281987,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -275059,7 +282071,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -275109,6 +282121,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -275155,7 +282191,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -275275,7 +282311,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -275311,7 +282347,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -275368,8 +282404,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -275503,7 +282539,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -275563,7 +282599,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -275584,8 +282620,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -275599,7 +282635,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -275791,7 +282827,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -275876,8 +282912,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -275901,7 +282937,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -276117,7 +283153,7 @@ "time": 34.7957, "timeString": "34 sec", "fuel": null, - "sulfur": 2680 + "sulfur": 894 }, { "group": "guns", @@ -276165,7 +283201,7 @@ "time": 17.3312, "timeString": "17 sec", "fuel": null, - "sulfur": 1340 + "sulfur": 447 }, { "group": "explosive", @@ -276225,7 +283261,7 @@ "time": 207.1, "timeString": "3 min 27 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "guns", @@ -276273,7 +283309,7 @@ "time": 102.7, "timeString": "1 min 42 sec", "fuel": null, - "sulfur": 840 + "sulfur": 280 }, { "group": "melee", @@ -276741,7 +283777,7 @@ "time": 43.7625, "timeString": "43 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -276777,7 +283813,7 @@ "time": 20.4875, "timeString": "20 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -276897,7 +283933,7 @@ "time": 20.75, "timeString": "20 sec", "fuel": null, - "sulfur": 2320 + "sulfur": 774 }, { "group": "guns", @@ -276945,7 +283981,7 @@ "time": 7.125, "timeString": "7 sec", "fuel": null, - "sulfur": 1160 + "sulfur": 387 }, { "group": "melee", @@ -277041,7 +284077,7 @@ "time": 222.2, "timeString": "3 min 42 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "guns", @@ -277089,7 +284125,7 @@ "time": 109.8, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 840 + "sulfur": 280 }, { "group": "guns", @@ -277137,7 +284173,7 @@ "time": 39.32, "timeString": "39 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -277185,7 +284221,7 @@ "time": 17.72, "timeString": "17 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "guns", @@ -277233,7 +284269,7 @@ "time": 19.62, "timeString": "19 sec", "fuel": null, - "sulfur": 2060 + "sulfur": 687 }, { "group": "guns", @@ -277281,7 +284317,7 @@ "time": 6.12, "timeString": "6 sec", "fuel": null, - "sulfur": 1040 + "sulfur": 347 }, { "group": "guns", @@ -277329,7 +284365,7 @@ "time": 41.725, "timeString": "41 sec", "fuel": null, - "sulfur": 2680 + "sulfur": 894 }, { "group": "guns", @@ -277377,7 +284413,7 @@ "time": 20.775, "timeString": "20 sec", "fuel": null, - "sulfur": 1340 + "sulfur": 447 }, { "group": "guns", @@ -277509,7 +284545,7 @@ "time": 42.36, "timeString": "42 sec", "fuel": null, - "sulfur": 1986 + "sulfur": 745 }, { "group": "guns", @@ -277545,7 +284581,7 @@ "time": 20.06, "timeString": "20 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "melee", @@ -277643,6 +284679,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 178, + "quantityTypeId": "-1211166256", + "time": 17.7, + "timeString": "17 sec", + "fuel": null, + "sulfur": 593 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 89, + "quantityTypeId": "-1211166256", + "time": 8.8, + "timeString": "8 sec", + "fuel": null, + "sulfur": 296 + }, { "group": "explosive", "which": "both", @@ -277689,7 +284761,7 @@ "time": 37.2, "timeString": "37 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "guns", @@ -277725,7 +284797,7 @@ "time": 16.6, "timeString": "16 sec", "fuel": null, - "sulfur": 1186 + "sulfur": 445 }, { "group": "melee", @@ -277929,7 +285001,7 @@ "time": 90.15, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 1626 + "sulfur": 610 }, { "group": "guns", @@ -277965,7 +285037,7 @@ "time": 45, "timeString": "45 sec", "fuel": null, - "sulfur": 813 + "sulfur": 305 }, { "group": "guns", @@ -278001,7 +285073,7 @@ "time": 107.425, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 2546 + "sulfur": 955 }, { "group": "guns", @@ -278037,7 +285109,7 @@ "time": 52.1, "timeString": "52 sec", "fuel": null, - "sulfur": 1280 + "sulfur": 480 }, { "group": "melee", @@ -278140,10 +285212,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 24, + "quantity": 23, "quantityTypeId": null, - "time": 1690, - "timeString": "28 min 10 sec", + "time": 1272, + "timeString": "21 min 12 sec", "fuel": null, "sulfur": null }, @@ -278166,8 +285238,8 @@ "caption": null, "quantity": 3, "quantityTypeId": null, - "time": 169, - "timeString": "2 min 49 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -278373,7 +285445,7 @@ "time": 68.9, "timeString": "1 min 8 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -278409,7 +285481,7 @@ "time": 34.45, "timeString": "34 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -278469,7 +285541,7 @@ "time": 71.3, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -278529,7 +285601,7 @@ "time": 35.65, "timeString": "35 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "guns", @@ -278538,8 +285610,8 @@ "caption": "Pistol Bullet", "quantity": 223, "quantityTypeId": "785728077", - "time": 57.3, - "timeString": "57 sec", + "time": 49.5, + "timeString": "49 sec", "fuel": null, "sulfur": 558 }, @@ -278562,10 +285634,10 @@ "caption": "HV Pistol Ammo", "quantity": 223, "quantityTypeId": "-1691396643", - "time": 57.3, - "timeString": "57 sec", + "time": 49.5, + "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "guns", @@ -278574,8 +285646,8 @@ "caption": "Pistol Bullet", "quantity": 112, "quantityTypeId": "785728077", - "time": 26.7, - "timeString": "26 sec", + "time": 22.8, + "timeString": "22 sec", "fuel": null, "sulfur": 280 }, @@ -278586,8 +285658,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 54, "quantityTypeId": "51984655", - "time": 38.1, - "timeString": "38 sec", + "time": 34.2, + "timeString": "34 sec", "fuel": null, "sulfur": 450 }, @@ -278598,10 +285670,10 @@ "caption": "HV Pistol Ammo", "quantity": 112, "quantityTypeId": "-1691396643", - "time": 26.7, - "timeString": "26 sec", + "time": 22.8, + "timeString": "22 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "guns", @@ -278949,7 +286021,7 @@ "time": 53.97, "timeString": "53 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "guns", @@ -278985,7 +286057,7 @@ "time": 26.92, "timeString": "26 sec", "fuel": null, - "sulfur": 1186 + "sulfur": 445 }, { "group": "melee", @@ -279106,8 +286178,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -279131,7 +286203,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -279275,7 +286347,7 @@ "time": 34.7957, "timeString": "34 sec", "fuel": null, - "sulfur": 2680 + "sulfur": 894 }, { "group": "explosive", @@ -279335,7 +286407,7 @@ "time": 207.1, "timeString": "3 min 27 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "melee", @@ -279623,7 +286695,7 @@ "time": 43.7625, "timeString": "43 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -279707,7 +286779,7 @@ "time": 20.75, "timeString": "20 sec", "fuel": null, - "sulfur": 2320 + "sulfur": 774 }, { "group": "melee", @@ -279779,7 +286851,7 @@ "time": 222.2, "timeString": "3 min 42 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "guns", @@ -279827,7 +286899,7 @@ "time": 39.32, "timeString": "39 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -279875,7 +286947,7 @@ "time": 19.62, "timeString": "19 sec", "fuel": null, - "sulfur": 2060 + "sulfur": 687 }, { "group": "guns", @@ -279923,7 +286995,7 @@ "time": 41.725, "timeString": "41 sec", "fuel": null, - "sulfur": 2680 + "sulfur": 894 }, { "group": "guns", @@ -280007,7 +287079,7 @@ "time": 42.36, "timeString": "42 sec", "fuel": null, - "sulfur": 1986 + "sulfur": 745 }, { "group": "melee", @@ -280057,6 +287129,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 178, + "quantityTypeId": "-1211166256", + "time": 17.7, + "timeString": "17 sec", + "fuel": null, + "sulfur": 593 + }, { "group": "explosive", "which": null, @@ -280103,7 +287199,7 @@ "time": 37.2, "timeString": "37 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "melee", @@ -280223,7 +287319,7 @@ "time": 90.15, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 1626 + "sulfur": 610 }, { "group": "guns", @@ -280259,7 +287355,7 @@ "time": 107.425, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 2546 + "sulfur": 955 }, { "group": "melee", @@ -280314,10 +287410,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 24, + "quantity": 23, "quantityTypeId": null, - "time": 1690, - "timeString": "28 min 10 sec", + "time": 1272, + "timeString": "21 min 12 sec", "fuel": null, "sulfur": null }, @@ -280451,7 +287547,7 @@ "time": 68.9, "timeString": "1 min 8 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -280511,7 +287607,7 @@ "time": 71.3, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -280520,8 +287616,8 @@ "caption": "Pistol Bullet", "quantity": 223, "quantityTypeId": "785728077", - "time": 57.3, - "timeString": "57 sec", + "time": 49.5, + "timeString": "49 sec", "fuel": null, "sulfur": 558 }, @@ -280544,10 +287640,10 @@ "caption": "HV Pistol Ammo", "quantity": 223, "quantityTypeId": "-1691396643", - "time": 57.3, - "timeString": "57 sec", + "time": 49.5, + "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "guns", @@ -280739,7 +287835,7 @@ "time": 53.97, "timeString": "53 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "melee", @@ -280824,8 +287920,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -280849,7 +287945,7 @@ "time": 34, "timeString": "34 sec", "fuel": null, - "sulfur": 120 + "sulfur": 72 }, { "group": "melee", @@ -280993,7 +288089,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -281053,7 +288149,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -281341,7 +288437,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -281425,7 +288521,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -281497,7 +288593,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -281545,7 +288641,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -281593,7 +288689,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -281641,7 +288737,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -281725,7 +288821,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -281775,6 +288871,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 8, + "quantityTypeId": null, + "time": 18.2, + "timeString": "18 sec", + "fuel": 8, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -281821,7 +288941,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -281941,7 +289061,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -281977,7 +289097,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -282034,8 +289154,8 @@ "caption": null, "quantity": 2, "quantityTypeId": null, - "time": 126, - "timeString": "2 min 6 sec", + "time": 64, + "timeString": "1 min 4 sec", "fuel": null, "sulfur": null }, @@ -282169,7 +289289,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -282229,7 +289349,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -282238,8 +289358,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -282262,10 +289382,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -282457,7 +289577,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -282542,8 +289662,8 @@ "quantityTypeId": null, "time": 32.882568128571, "timeString": "32 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -282567,7 +289687,7 @@ "time": 196, "timeString": "3 min 16 sec", "fuel": null, - "sulfur": 660 + "sulfur": 396 }, { "group": "melee", @@ -282711,7 +289831,7 @@ "time": 108.6538, "timeString": "1 min 48 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "explosive", @@ -282771,7 +289891,7 @@ "time": 627.9, "timeString": "10 min 27 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "melee", @@ -283059,7 +290179,7 @@ "time": 131.4, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -283143,7 +290263,7 @@ "time": 75.25, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 6960 + "sulfur": 2321 }, { "group": "melee", @@ -283215,7 +290335,7 @@ "time": 667, "timeString": "11 min 7 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -283263,7 +290383,7 @@ "time": 121.96, "timeString": "2 min 1 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -283311,7 +290431,7 @@ "time": 58.98, "timeString": "58 sec", "fuel": null, - "sulfur": 6160 + "sulfur": 2054 }, { "group": "guns", @@ -283359,7 +290479,7 @@ "time": 128.25, "timeString": "2 min 8 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "guns", @@ -283443,7 +290563,7 @@ "time": 131.56, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -283493,6 +290613,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 407, + "quantityTypeId": null, + "time": 64.9, + "timeString": "1 min 4 sec", + "fuel": 407, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 534, + "quantityTypeId": "-1211166256", + "time": 56.7, + "timeString": "56 sec", + "fuel": null, + "sulfur": 1778 + }, { "group": "explosive", "which": null, @@ -283539,7 +290683,7 @@ "time": 119.6, "timeString": "1 min 59 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -283659,7 +290803,7 @@ "time": 270.45, "timeString": "4 min 30 sec", "fuel": null, - "sulfur": 4852 + "sulfur": 1820 }, { "group": "guns", @@ -283695,7 +290839,7 @@ "time": 328.9, "timeString": "5 min 28 sec", "fuel": null, - "sulfur": 7625 + "sulfur": 2860 }, { "group": "melee", @@ -283750,10 +290894,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 10, + "quantity": 6, "quantityTypeId": null, - "time": 676, - "timeString": "11 min 16 sec", + "time": 339, + "timeString": "5 min 39 sec", "fuel": null, "sulfur": null }, @@ -283887,7 +291031,7 @@ "time": 209.6, "timeString": "3 min 29 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -283947,7 +291091,7 @@ "time": 218.3, "timeString": "3 min 38 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -283956,8 +291100,8 @@ "caption": "Pistol Bullet", "quantity": 667, "quantityTypeId": "785728077", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, "sulfur": 1668 }, @@ -283968,8 +291112,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 253, "quantityTypeId": "51984655", - "time": 89.2, - "timeString": "1 min 29 sec", + "time": 81.4, + "timeString": "1 min 21 sec", "fuel": null, "sulfur": 2107 }, @@ -283980,10 +291124,10 @@ "caption": "HV Pistol Ammo", "quantity": 667, "quantityTypeId": "-1691396643", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, - "sulfur": 8891 + "sulfur": 3335 }, { "group": "guns", @@ -284175,7 +291319,7 @@ "time": 169.91, "timeString": "2 min 49 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -284256,12 +291400,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 200, + "quantity": 100, "quantityTypeId": null, - "time": 1194, - "timeString": "19 min 54 sec", - "fuel": 50600, - "sulfur": 122000 + "time": 594, + "timeString": "9 min 54 sec", + "fuel": 7500, + "sulfur": 30000 }, { "group": "explosive", @@ -284285,7 +291429,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -284429,7 +291573,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -284489,7 +291633,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -284885,7 +292029,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -284969,7 +292113,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -285041,7 +292185,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -285089,7 +292233,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -285137,7 +292281,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -285185,7 +292329,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -285269,7 +292413,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -285319,6 +292463,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1250, + "quantityTypeId": null, + "time": 152.1, + "timeString": "2 min 32 sec", + "fuel": 1250, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -285365,7 +292533,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -285509,7 +292677,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -285545,7 +292713,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -285602,8 +292770,8 @@ "caption": null, "quantity": 3, "quantityTypeId": null, - "time": 169, - "timeString": "2 min 49 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -285737,7 +292905,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -285797,7 +292965,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -285806,8 +292974,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -285818,8 +292986,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 79, "quantityTypeId": "51984655", - "time": 19.5, - "timeString": "19 sec", + "time": 15.6, + "timeString": "15 sec", "fuel": null, "sulfur": 658 }, @@ -285830,10 +292998,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -286049,7 +293217,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -286146,8 +293314,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -286171,7 +293339,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -286315,7 +293483,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -286375,7 +293543,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -286663,7 +293831,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -286747,7 +293915,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -286819,7 +293987,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -286867,7 +294035,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -286915,7 +294083,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -286963,7 +294131,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -287047,7 +294215,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -287097,6 +294265,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -287143,7 +294335,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -287263,7 +294455,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -287299,7 +294491,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -287356,8 +294548,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -287491,7 +294683,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -287551,7 +294743,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -287572,8 +294764,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -287587,7 +294779,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -287779,7 +294971,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -287864,8 +295056,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -287889,7 +295081,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -288033,7 +295225,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -288093,7 +295285,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -288381,7 +295573,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -288465,7 +295657,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -288537,7 +295729,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -288585,7 +295777,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -288633,7 +295825,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -288681,7 +295873,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -288765,7 +295957,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -288815,6 +296007,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -288861,7 +296077,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -288981,7 +296197,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -289017,7 +296233,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -289074,8 +296290,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -289209,7 +296425,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -289269,7 +296485,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -289290,8 +296506,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -289305,7 +296521,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -289497,7 +296713,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -289582,8 +296798,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -289607,7 +296823,7 @@ "time": 100, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 340 + "sulfur": 204 }, { "group": "melee", @@ -289751,7 +296967,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -289811,7 +297027,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -290099,7 +297315,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -290183,7 +297399,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -290255,7 +297471,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -290303,7 +297519,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -290351,7 +297567,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -290399,7 +297615,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -290483,7 +297699,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -290533,6 +297749,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -290579,7 +297819,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -290699,7 +297939,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -290735,7 +297975,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -290790,10 +298030,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -290927,7 +298167,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -290987,7 +298227,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -290996,8 +298236,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -291008,8 +298248,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 127, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 53.2, + "timeString": "53 sec", "fuel": null, "sulfur": 1058 }, @@ -291020,10 +298260,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -291215,7 +298455,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -291300,8 +298540,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -291325,7 +298565,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -291469,7 +298709,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -291529,7 +298769,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -291817,7 +299057,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -291901,7 +299141,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -291973,7 +299213,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -292021,7 +299261,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -292069,7 +299309,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -292117,7 +299357,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -292201,7 +299441,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -292251,6 +299491,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -292297,7 +299561,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -292417,7 +299681,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -292453,7 +299717,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -292510,8 +299774,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -292645,7 +299909,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -292705,7 +299969,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -292726,8 +299990,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -292741,7 +300005,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -292933,7 +300197,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -293018,8 +300282,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -293043,7 +300307,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -293187,7 +300451,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -293247,7 +300511,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -293535,7 +300799,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -293619,7 +300883,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -293691,7 +300955,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -293739,7 +301003,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -293787,7 +301051,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -293835,7 +301099,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -293919,7 +301183,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -293969,6 +301233,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -294015,7 +301303,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -294135,7 +301423,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -294171,7 +301459,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -294228,8 +301516,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -294363,7 +301651,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -294423,7 +301711,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -294444,8 +301732,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -294459,7 +301747,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -294651,7 +301939,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -294736,8 +302024,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -294761,7 +302049,7 @@ "time": 136, "timeString": "2 min 16 sec", "fuel": null, - "sulfur": 460 + "sulfur": 276 }, { "group": "melee", @@ -294905,7 +302193,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -294965,7 +302253,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -295253,7 +302541,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -295337,7 +302625,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -295409,7 +302697,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -295457,7 +302745,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -295505,7 +302793,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -295553,7 +302841,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -295637,7 +302925,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -295687,6 +302975,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -295733,7 +303045,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -295853,7 +303165,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -295889,7 +303201,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -295946,8 +303258,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 34, - "timeString": "34 sec", + "time": 17, + "timeString": "17 sec", "fuel": null, "sulfur": null }, @@ -296081,7 +303393,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -296141,7 +303453,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -296150,8 +303462,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -296174,10 +303486,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -296369,7 +303681,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -296467,7 +303779,7 @@ "time": 448, "timeString": "7 min 28 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 900 }, { "group": "explosive", @@ -296714,10 +304026,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 56, + "quantity": 54, "quantityTypeId": null, - "time": 4055, - "timeString": "1 hour 7 min 35 sec", + "time": 3053, + "timeString": "50 min 53 sec", "fuel": null, "sulfur": null }, @@ -296864,8 +304176,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -296889,7 +304201,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -297033,7 +304345,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -297093,7 +304405,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -297381,7 +304693,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -297465,7 +304777,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -297537,7 +304849,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -297585,7 +304897,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -297633,7 +304945,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -297681,7 +304993,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -297765,7 +305077,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -297815,6 +305127,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -297861,7 +305197,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -297981,7 +305317,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -298017,7 +305353,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -298074,8 +305410,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -298209,7 +305545,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -298269,7 +305605,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -298278,8 +305614,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -298302,10 +305638,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -298497,7 +305833,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -298595,7 +305931,7 @@ "time": 100, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 340 + "sulfur": 204 }, { "group": "melee", @@ -298739,7 +306075,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -298799,7 +306135,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -299027,7 +306363,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -299111,7 +306447,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -299183,7 +306519,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -299231,7 +306567,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -299279,7 +306615,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -299327,7 +306663,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -299411,7 +306747,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -299461,6 +306797,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "guns", "which": null, @@ -299495,7 +306843,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -299615,7 +306963,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -299651,7 +306999,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -299708,8 +307056,8 @@ "caption": null, "quantity": 3, "quantityTypeId": null, - "time": 169, - "timeString": "2 min 49 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -299843,7 +307191,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -299903,7 +307251,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -299912,8 +307260,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -299924,8 +307272,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 334, "quantityTypeId": "51984655", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 2782 }, @@ -299936,10 +307284,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -300131,7 +307479,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -300216,8 +307564,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -300241,7 +307589,7 @@ "time": 22, "timeString": "22 sec", "fuel": null, - "sulfur": 80 + "sulfur": 48 }, { "group": "melee", @@ -300385,7 +307733,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -300445,7 +307793,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -300733,7 +308081,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -300817,7 +308165,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -300889,7 +308237,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -300937,7 +308285,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -300985,7 +308333,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -301033,7 +308381,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -301117,7 +308465,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -301167,6 +308515,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -301213,7 +308585,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -301333,7 +308705,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -301369,7 +308741,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -301426,8 +308798,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -301561,7 +308933,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -301621,7 +308993,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -301657,7 +309029,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -301849,7 +309221,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -301934,8 +309306,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -301959,7 +309331,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -302103,7 +309475,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -302163,7 +309535,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -302559,7 +309931,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -302643,7 +310015,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -302715,7 +310087,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -302763,7 +310135,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -302811,7 +310183,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -302859,7 +310231,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -302943,7 +310315,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -302993,6 +310365,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -303039,7 +310435,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -303183,7 +310579,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -303219,7 +310615,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -303276,8 +310672,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 3, + "timeString": "3 sec", "fuel": null, "sulfur": null }, @@ -303411,7 +310807,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -303471,7 +310867,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -303507,7 +310903,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -303723,7 +311119,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -303820,8 +311216,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -303845,7 +311241,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -303989,7 +311385,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -304049,7 +311445,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -304445,7 +311841,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -304529,7 +311925,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -304601,7 +311997,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -304649,7 +312045,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -304697,7 +312093,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -304745,7 +312141,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -304829,7 +312225,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -304879,6 +312275,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 18, + "timeString": "18 sec", + "fuel": 6, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": null, @@ -304925,7 +312345,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -305069,7 +312489,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -305105,7 +312525,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -305297,7 +312717,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -305357,7 +312777,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -305393,7 +312813,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -305609,7 +313029,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -305706,8 +313126,8 @@ "quantityTypeId": null, "time": 32.882568128571, "timeString": "32 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -305731,7 +313151,7 @@ "time": 196, "timeString": "3 min 16 sec", "fuel": null, - "sulfur": 660 + "sulfur": 396 }, { "group": "melee", @@ -305875,7 +313295,7 @@ "time": 108.6538, "timeString": "1 min 48 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "explosive", @@ -305935,7 +313355,7 @@ "time": 627.9, "timeString": "10 min 27 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "melee", @@ -306223,7 +313643,7 @@ "time": 131.4, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -306307,7 +313727,7 @@ "time": 75.25, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 6960 + "sulfur": 2321 }, { "group": "melee", @@ -306379,7 +313799,7 @@ "time": 667, "timeString": "11 min 7 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -306427,7 +313847,7 @@ "time": 121.96, "timeString": "2 min 1 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -306475,7 +313895,7 @@ "time": 58.98, "timeString": "58 sec", "fuel": null, - "sulfur": 6160 + "sulfur": 2054 }, { "group": "guns", @@ -306523,7 +313943,7 @@ "time": 128.25, "timeString": "2 min 8 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "guns", @@ -306607,7 +314027,7 @@ "time": 131.56, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -306657,6 +314077,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 407, + "quantityTypeId": null, + "time": 64.9, + "timeString": "1 min 4 sec", + "fuel": 407, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 534, + "quantityTypeId": "-1211166256", + "time": 56.7, + "timeString": "56 sec", + "fuel": null, + "sulfur": 1778 + }, { "group": "explosive", "which": null, @@ -306703,7 +314147,7 @@ "time": 119.6, "timeString": "1 min 59 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -306823,7 +314267,7 @@ "time": 270.45, "timeString": "4 min 30 sec", "fuel": null, - "sulfur": 4852 + "sulfur": 1820 }, { "group": "guns", @@ -306859,7 +314303,7 @@ "time": 328.9, "timeString": "5 min 28 sec", "fuel": null, - "sulfur": 7625 + "sulfur": 2860 }, { "group": "melee", @@ -306914,10 +314358,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 10, + "quantity": 6, "quantityTypeId": null, - "time": 676, - "timeString": "11 min 16 sec", + "time": 339, + "timeString": "5 min 39 sec", "fuel": null, "sulfur": null }, @@ -307051,7 +314495,7 @@ "time": 209.6, "timeString": "3 min 29 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -307111,7 +314555,7 @@ "time": 218.3, "timeString": "3 min 38 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -307120,8 +314564,8 @@ "caption": "Pistol Bullet", "quantity": 667, "quantityTypeId": "785728077", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, "sulfur": 1668 }, @@ -307132,8 +314576,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 253, "quantityTypeId": "51984655", - "time": 89.2, - "timeString": "1 min 29 sec", + "time": 81.4, + "timeString": "1 min 21 sec", "fuel": null, "sulfur": 2107 }, @@ -307144,10 +314588,10 @@ "caption": "HV Pistol Ammo", "quantity": 667, "quantityTypeId": "-1691396643", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, - "sulfur": 8891 + "sulfur": 3335 }, { "group": "guns", @@ -307339,7 +314783,7 @@ "time": 169.91, "timeString": "2 min 49 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -307424,8 +314868,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -307449,7 +314893,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -307593,7 +315037,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -307653,7 +315097,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -308049,7 +315493,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -308133,7 +315577,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -308205,7 +315649,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -308253,7 +315697,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -308301,7 +315745,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -308349,7 +315793,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -308433,7 +315877,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -308483,6 +315927,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 18, + "timeString": "18 sec", + "fuel": 6, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": null, @@ -308529,7 +315997,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -308673,7 +316141,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -308709,7 +316177,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -308901,7 +316369,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -308961,7 +316429,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -308997,7 +316465,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -309213,7 +316681,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -309323,7 +316791,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -309467,7 +316935,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "explosive", @@ -309527,7 +316995,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "melee", @@ -309755,7 +317223,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -309839,7 +317307,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "melee", @@ -309911,7 +317379,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -309959,7 +317427,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -310007,7 +317475,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -310055,7 +317523,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -310139,7 +317607,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "melee", @@ -310189,6 +317657,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, { "group": "guns", "which": null, @@ -310223,7 +317703,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "melee", @@ -310343,7 +317823,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -310379,7 +317859,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "melee", @@ -310434,10 +317914,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -310571,7 +318051,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -310631,7 +318111,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -310640,8 +318120,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -310652,8 +318132,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -310664,10 +318144,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -310859,7 +318339,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "melee", @@ -310957,7 +318437,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -311101,7 +318581,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "explosive", @@ -311161,7 +318641,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "melee", @@ -311389,7 +318869,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -311473,7 +318953,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "melee", @@ -311545,7 +319025,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -311593,7 +319073,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -311641,7 +319121,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -311689,7 +319169,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -311773,7 +319253,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "melee", @@ -311823,6 +319303,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, { "group": "guns", "which": null, @@ -311857,7 +319349,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "melee", @@ -311977,7 +319469,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -312013,7 +319505,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "melee", @@ -312068,10 +319560,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -312205,7 +319697,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -312265,7 +319757,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -312274,8 +319766,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -312286,8 +319778,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -312298,10 +319790,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -312493,7 +319985,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "melee", @@ -312578,8 +320070,8 @@ "quantityTypeId": null, "time": 41.103210160714, "timeString": "41 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -312603,7 +320095,7 @@ "time": 280, "timeString": "4 min 40 sec", "fuel": null, - "sulfur": 940 + "sulfur": 564 }, { "group": "melee", @@ -312747,7 +320239,7 @@ "time": 182.6452, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 13340 + "sulfur": 4449 }, { "group": "explosive", @@ -312807,7 +320299,7 @@ "time": 1050.4, "timeString": "17 min 30 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "melee", @@ -313095,7 +320587,7 @@ "time": 221.9375, "timeString": "3 min 41 sec", "fuel": null, - "sulfur": 11117 + "sulfur": 4170 }, { "group": "guns", @@ -313179,7 +320671,7 @@ "time": 129.75, "timeString": "2 min 9 sec", "fuel": null, - "sulfur": 11600 + "sulfur": 3869 }, { "group": "melee", @@ -313251,7 +320743,7 @@ "time": 1114.8, "timeString": "18 min 34 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -313299,7 +320791,7 @@ "time": 204.72, "timeString": "3 min 24 sec", "fuel": null, - "sulfur": 16680 + "sulfur": 5563 }, { "group": "guns", @@ -313347,7 +320839,7 @@ "time": 98.34, "timeString": "1 min 38 sec", "fuel": null, - "sulfur": 10260 + "sulfur": 3422 }, { "group": "guns", @@ -313395,7 +320887,7 @@ "time": 218.025, "timeString": "3 min 38 sec", "fuel": null, - "sulfur": 13340 + "sulfur": 4449 }, { "group": "guns", @@ -313479,7 +320971,7 @@ "time": 220.76, "timeString": "3 min 40 sec", "fuel": null, - "sulfur": 9878 + "sulfur": 3705 }, { "group": "melee", @@ -313529,6 +321021,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 509, + "quantityTypeId": null, + "time": 78.5, + "timeString": "1 min 18 sec", + "fuel": 509, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 889, + "quantityTypeId": "-1211166256", + "time": 95.6, + "timeString": "1 min 35 sec", + "fuel": null, + "sulfur": 2960 + }, { "group": "explosive", "which": null, @@ -313575,7 +321091,7 @@ "time": 201.9, "timeString": "3 min 21 sec", "fuel": null, - "sulfur": 11850 + "sulfur": 4445 }, { "group": "melee", @@ -313695,7 +321211,7 @@ "time": 454.5, "timeString": "7 min 34 sec", "fuel": null, - "sulfur": 8091 + "sulfur": 3035 }, { "group": "guns", @@ -313731,7 +321247,7 @@ "time": 550.375, "timeString": "9 min 10 sec", "fuel": null, - "sulfur": 12703 + "sulfur": 4765 }, { "group": "melee", @@ -313786,10 +321302,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -313923,7 +321439,7 @@ "time": 353.2, "timeString": "5 min 53 sec", "fuel": null, - "sulfur": 11117 + "sulfur": 4170 }, { "group": "guns", @@ -313983,7 +321499,7 @@ "time": 365.475, "timeString": "6 min 5 sec", "fuel": null, - "sulfur": 16680 + "sulfur": 5563 }, { "group": "guns", @@ -313992,8 +321508,8 @@ "caption": "Pistol Bullet", "quantity": 1112, "quantityTypeId": "785728077", - "time": 290.5, - "timeString": "4 min 50 sec", + "time": 255.4, + "timeString": "4 min 15 sec", "fuel": null, "sulfur": 2780 }, @@ -314004,8 +321520,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 349, "quantityTypeId": "51984655", - "time": 114.4, - "timeString": "1 min 54 sec", + "time": 102.7, + "timeString": "1 min 42 sec", "fuel": null, "sulfur": 2907 }, @@ -314016,10 +321532,10 @@ "caption": "HV Pistol Ammo", "quantity": 1112, "quantityTypeId": "-1691396643", - "time": 290.5, - "timeString": "4 min 50 sec", + "time": 255.4, + "timeString": "4 min 15 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "guns", @@ -314211,7 +321727,7 @@ "time": 285.72, "timeString": "4 min 45 sec", "fuel": null, - "sulfur": 11850 + "sulfur": 4445 }, { "group": "melee", @@ -314309,7 +321825,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -314453,7 +321969,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "explosive", @@ -314513,7 +322029,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "melee", @@ -314741,7 +322257,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -314825,7 +322341,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "melee", @@ -314897,7 +322413,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -314945,7 +322461,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -314993,7 +322509,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -315041,7 +322557,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -315125,7 +322641,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "melee", @@ -315175,6 +322691,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, { "group": "guns", "which": null, @@ -315209,7 +322737,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "melee", @@ -315329,7 +322857,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -315365,7 +322893,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "melee", @@ -315420,10 +322948,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -315557,7 +323085,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -315617,7 +323145,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -315626,8 +323154,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -315638,8 +323166,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -315650,10 +323178,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -315845,7 +323373,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "melee", @@ -315930,8 +323458,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -315955,7 +323483,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -316099,7 +323627,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -316159,7 +323687,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -316447,7 +323975,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -316531,7 +324059,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -316603,7 +324131,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -316651,7 +324179,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -316699,7 +324227,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -316747,7 +324275,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -316831,7 +324359,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -316881,6 +324409,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "explosive", "which": null, @@ -316927,7 +324479,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -317047,7 +324599,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -317083,7 +324635,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -317140,8 +324692,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 2, + "timeString": "2 sec", "fuel": null, "sulfur": null }, @@ -317275,7 +324827,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -317335,7 +324887,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -317371,7 +324923,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -317563,7 +325115,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -317648,8 +325200,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -317673,7 +325225,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -317817,7 +325369,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -317877,7 +325429,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -318273,7 +325825,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -318357,7 +325909,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -318429,7 +325981,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -318477,7 +326029,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -318525,7 +326077,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -318573,7 +326125,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -318657,7 +326209,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -318707,6 +326259,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -318753,7 +326329,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -318897,7 +326473,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -318933,7 +326509,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -318990,8 +326566,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 2, + "timeString": "2 sec", "fuel": null, "sulfur": null }, @@ -319125,7 +326701,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -319185,7 +326761,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -319221,7 +326797,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -319437,7 +327013,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -319534,8 +327110,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -319559,7 +327135,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -319703,7 +327279,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -319763,7 +327339,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -320051,7 +327627,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -320135,7 +327711,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -320207,7 +327783,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -320255,7 +327831,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -320303,7 +327879,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -320351,7 +327927,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -320435,7 +328011,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -320485,6 +328061,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -320531,7 +328131,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -320651,7 +328251,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -320687,7 +328287,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -320744,8 +328344,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -320879,7 +328479,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -320939,7 +328539,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -320960,8 +328560,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -320975,7 +328575,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -321167,7 +328767,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -321252,8 +328852,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -321277,7 +328877,7 @@ "time": 94, "timeString": "1 min 34 sec", "fuel": null, - "sulfur": 320 + "sulfur": 192 }, { "group": "melee", @@ -321421,7 +329021,7 @@ "time": 34.7957, "timeString": "34 sec", "fuel": null, - "sulfur": 2680 + "sulfur": 894 }, { "group": "explosive", @@ -321481,7 +329081,7 @@ "time": 207.1, "timeString": "3 min 27 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "melee", @@ -321769,7 +329369,7 @@ "time": 43.7625, "timeString": "43 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -321853,7 +329453,7 @@ "time": 20.75, "timeString": "20 sec", "fuel": null, - "sulfur": 2320 + "sulfur": 774 }, { "group": "melee", @@ -321925,7 +329525,7 @@ "time": 222.2, "timeString": "3 min 42 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "guns", @@ -321973,7 +329573,7 @@ "time": 39.32, "timeString": "39 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -322021,7 +329621,7 @@ "time": 19.62, "timeString": "19 sec", "fuel": null, - "sulfur": 2060 + "sulfur": 687 }, { "group": "guns", @@ -322069,7 +329669,7 @@ "time": 41.725, "timeString": "41 sec", "fuel": null, - "sulfur": 2680 + "sulfur": 894 }, { "group": "guns", @@ -322153,7 +329753,7 @@ "time": 42.36, "timeString": "42 sec", "fuel": null, - "sulfur": 1986 + "sulfur": 745 }, { "group": "melee", @@ -322203,6 +329803,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 178, + "quantityTypeId": "-1211166256", + "time": 17.7, + "timeString": "17 sec", + "fuel": null, + "sulfur": 593 + }, { "group": "explosive", "which": null, @@ -322249,7 +329873,7 @@ "time": 37.2, "timeString": "37 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "melee", @@ -322369,7 +329993,7 @@ "time": 90.15, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 1626 + "sulfur": 610 }, { "group": "guns", @@ -322405,7 +330029,7 @@ "time": 107.425, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 2546 + "sulfur": 955 }, { "group": "melee", @@ -322460,10 +330084,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -322597,7 +330221,7 @@ "time": 68.9, "timeString": "1 min 8 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -322657,7 +330281,7 @@ "time": 71.3, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -322666,8 +330290,8 @@ "caption": "Pistol Bullet", "quantity": 223, "quantityTypeId": "785728077", - "time": 57.3, - "timeString": "57 sec", + "time": 49.5, + "timeString": "49 sec", "fuel": null, "sulfur": 558 }, @@ -322690,10 +330314,10 @@ "caption": "HV Pistol Ammo", "quantity": 223, "quantityTypeId": "-1691396643", - "time": 57.3, - "timeString": "57 sec", + "time": 49.5, + "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "guns", @@ -322885,7 +330509,7 @@ "time": 53.97, "timeString": "53 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "melee", @@ -322970,8 +330594,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -322995,7 +330619,7 @@ "time": 70, "timeString": "1 min 10 sec", "fuel": null, - "sulfur": 240 + "sulfur": 144 }, { "group": "melee", @@ -323139,7 +330763,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -323199,7 +330823,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -323487,7 +331111,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -323571,7 +331195,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -323643,7 +331267,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -323691,7 +331315,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -323739,7 +331363,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -323787,7 +331411,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -323871,7 +331495,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -323921,6 +331545,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -323967,7 +331615,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -324087,7 +331735,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -324123,7 +331771,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -324180,8 +331828,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -324315,7 +331963,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -324375,7 +332023,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -324384,8 +332032,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -324408,10 +332056,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -324603,7 +332251,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -324684,12 +332332,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 6, - "timeString": "6 sec", - "fuel": 506, - "sulfur": 1220 + "time": 1, + "timeString": "1 sec", + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -324713,7 +332361,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -324857,7 +332505,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -324917,7 +332565,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -325313,7 +332961,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -325397,7 +333045,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -325469,7 +333117,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -325517,7 +333165,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -325565,7 +333213,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -325613,7 +333261,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -325697,7 +333345,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "melee", @@ -325747,6 +333395,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 10, + "quantityTypeId": null, + "time": 1, + "timeString": "1 sec", + "fuel": 10, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 3 + }, { "group": "explosive", "which": null, @@ -325793,7 +333465,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -325937,7 +333609,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -325973,7 +333645,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "melee", @@ -326030,8 +333702,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 2, - "timeString": "2 sec", + "time": 1, + "timeString": "1 sec", "fuel": null, "sulfur": null }, @@ -326165,7 +333837,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -326225,7 +333897,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -326261,7 +333933,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -326477,7 +334149,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "melee", @@ -326574,8 +334246,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -326599,7 +334271,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -326743,7 +334415,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -326803,7 +334475,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -327199,7 +334871,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -327283,7 +334955,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -327355,7 +335027,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -327403,7 +335075,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -327451,7 +335123,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -327499,7 +335171,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -327583,7 +335255,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -327633,6 +335305,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 18, + "timeString": "18 sec", + "fuel": 6, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": null, @@ -327679,7 +335375,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -327823,7 +335519,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -327859,7 +335555,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -327916,8 +335612,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 2, - "timeString": "2 sec", + "time": 1, + "timeString": "1 sec", "fuel": null, "sulfur": null }, @@ -328051,7 +335747,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -328111,7 +335807,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -328147,7 +335843,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -328363,7 +336059,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -328460,8 +336156,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -328485,7 +336181,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -328629,7 +336325,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -328689,7 +336385,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -328977,7 +336673,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -329061,7 +336757,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -329133,7 +336829,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -329181,7 +336877,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -329229,7 +336925,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -329277,7 +336973,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -329361,7 +337057,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -329411,6 +337107,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -329457,7 +337177,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -329577,7 +337297,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -329613,7 +337333,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -329670,8 +337390,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -329805,7 +337525,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -329865,7 +337585,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -329901,7 +337621,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -330093,7 +337813,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -330178,8 +337898,8 @@ "quantityTypeId": null, "time": 1.2330963048214, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -330203,7 +337923,7 @@ "time": 70, "timeString": "1 min 10 sec", "fuel": null, - "sulfur": 240 + "sulfur": 144 }, { "group": "melee", @@ -330347,7 +338067,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -330407,7 +338127,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -330695,7 +338415,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -330779,7 +338499,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -330851,7 +338571,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -330899,7 +338619,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -330947,7 +338667,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -330995,7 +338715,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -331079,7 +338799,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -331129,6 +338849,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 16, + "quantityTypeId": null, + "time": 19, + "timeString": "19 sec", + "fuel": 16, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -331175,7 +338919,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -331295,7 +339039,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -331331,7 +339075,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -331386,10 +339130,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 4, + "quantity": 3, "quantityTypeId": null, - "time": 253, - "timeString": "4 min 13 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -331523,7 +339267,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -331583,7 +339327,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -331592,8 +339336,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -331616,10 +339360,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -331811,7 +339555,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -331909,7 +339653,7 @@ "time": 28, "timeString": "28 sec", "fuel": null, - "sulfur": 100 + "sulfur": 60 }, { "group": "melee", @@ -332029,7 +339773,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -332089,7 +339833,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -332293,7 +340037,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -332377,7 +340121,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -332449,7 +340193,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -332497,7 +340241,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -332545,7 +340289,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -332593,7 +340337,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -332677,7 +340421,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -332703,6 +340447,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "guns", "which": null, @@ -332737,7 +340493,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -332845,7 +340601,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -332881,7 +340637,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -333025,7 +340781,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -333085,7 +340841,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -333121,7 +340877,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -333313,7 +341069,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -333370,12 +341126,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 260, + "quantity": 130, "quantityTypeId": null, - "time": 1554, - "timeString": "25 min 54 sec", - "fuel": 65780, - "sulfur": 158600 + "time": 774, + "timeString": "12 min 54 sec", + "fuel": 9750, + "sulfur": 39000 }, { "group": "explosive", @@ -333399,7 +341155,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -333543,7 +341299,7 @@ "time": 17.0646, "timeString": "17 sec", "fuel": null, - "sulfur": 1300 + "sulfur": 434 }, { "group": "explosive", @@ -333603,7 +341359,7 @@ "time": 101, "timeString": "1 min 41 sec", "fuel": null, - "sulfur": 820 + "sulfur": 273 }, { "group": "melee", @@ -333999,7 +341755,7 @@ "time": 20.2625, "timeString": "20 sec", "fuel": null, - "sulfur": 1093 + "sulfur": 410 }, { "group": "guns", @@ -334083,7 +341839,7 @@ "time": 7, "timeString": "7 sec", "fuel": null, - "sulfur": 1140 + "sulfur": 380 }, { "group": "melee", @@ -334155,7 +341911,7 @@ "time": 107.2, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 820 + "sulfur": 273 }, { "group": "guns", @@ -334203,7 +341959,7 @@ "time": 17.48, "timeString": "17 sec", "fuel": null, - "sulfur": 1640 + "sulfur": 547 }, { "group": "guns", @@ -334251,7 +342007,7 @@ "time": 5.88, "timeString": "5 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -334299,7 +342055,7 @@ "time": 20.425, "timeString": "20 sec", "fuel": null, - "sulfur": 1300 + "sulfur": 434 }, { "group": "guns", @@ -334383,7 +342139,7 @@ "time": 19.76, "timeString": "19 sec", "fuel": null, - "sulfur": 973 + "sulfur": 365 }, { "group": "melee", @@ -334433,6 +342189,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1625, + "quantityTypeId": null, + "time": 196.4, + "timeString": "3 min 16 sec", + "fuel": 1625, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 87, + "quantityTypeId": "-1211166256", + "time": 8.6, + "timeString": "8 sec", + "fuel": null, + "sulfur": 290 + }, { "group": "explosive", "which": null, @@ -334479,7 +342259,7 @@ "time": 16.4, "timeString": "16 sec", "fuel": null, - "sulfur": 1160 + "sulfur": 435 }, { "group": "guns", @@ -334623,7 +342403,7 @@ "time": 41.25, "timeString": "41 sec", "fuel": null, - "sulfur": 800 + "sulfur": 300 }, { "group": "guns", @@ -334659,7 +342439,7 @@ "time": 51.575, "timeString": "51 sec", "fuel": null, - "sulfur": 1240 + "sulfur": 465 }, { "group": "melee", @@ -334716,8 +342496,8 @@ "caption": null, "quantity": 3, "quantityTypeId": null, - "time": 219, - "timeString": "3 min 39 sec", + "time": 165, + "timeString": "2 min 45 sec", "fuel": null, "sulfur": null }, @@ -334851,7 +342631,7 @@ "time": 34.15, "timeString": "34 sec", "fuel": null, - "sulfur": 1093 + "sulfur": 410 }, { "group": "guns", @@ -334911,7 +342691,7 @@ "time": 35.3, "timeString": "35 sec", "fuel": null, - "sulfur": 1640 + "sulfur": 547 }, { "group": "guns", @@ -334920,8 +342700,8 @@ "caption": "Pistol Bullet", "quantity": 109, "quantityTypeId": "785728077", - "time": 26.4, - "timeString": "26 sec", + "time": 22.5, + "timeString": "22 sec", "fuel": null, "sulfur": 273 }, @@ -334932,8 +342712,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 103, "quantityTypeId": "51984655", - "time": 25.8, - "timeString": "25 sec", + "time": 21.9, + "timeString": "21 sec", "fuel": null, "sulfur": 858 }, @@ -334944,10 +342724,10 @@ "caption": "HV Pistol Ammo", "quantity": 109, "quantityTypeId": "-1691396643", - "time": 26.4, - "timeString": "26 sec", + "time": 22.5, + "timeString": "22 sec", "fuel": null, - "sulfur": 1453 + "sulfur": 545 }, { "group": "guns", @@ -335163,7 +342943,7 @@ "time": 26.66, "timeString": "26 sec", "fuel": null, - "sulfur": 1160 + "sulfur": 435 }, { "group": "melee", @@ -335260,8 +343040,8 @@ "quantityTypeId": null, "time": 24.661926096428, "timeString": "24 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -335285,7 +343065,7 @@ "time": 52, "timeString": "52 sec", "fuel": null, - "sulfur": 180 + "sulfur": 108 }, { "group": "melee", @@ -335429,7 +343209,7 @@ "time": 78.257, "timeString": "1 min 18 sec", "fuel": null, - "sulfur": 6000 + "sulfur": 2001 }, { "group": "explosive", @@ -335489,7 +343269,7 @@ "time": 469.7, "timeString": "7 min 49 sec", "fuel": null, - "sulfur": 3760 + "sulfur": 1254 }, { "group": "melee", @@ -335777,7 +343557,7 @@ "time": 97.825, "timeString": "1 min 37 sec", "fuel": null, - "sulfur": 4999 + "sulfur": 1875 }, { "group": "guns", @@ -335861,7 +343641,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 5220 + "sulfur": 1741 }, { "group": "melee", @@ -335933,7 +343713,7 @@ "time": 501, "timeString": "8 min 21 sec", "fuel": null, - "sulfur": 3760 + "sulfur": 1254 }, { "group": "guns", @@ -335981,7 +343761,7 @@ "time": 91.44, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 7500 + "sulfur": 2501 }, { "group": "guns", @@ -336029,7 +343809,7 @@ "time": 42.36, "timeString": "42 sec", "fuel": null, - "sulfur": 4620 + "sulfur": 1541 }, { "group": "guns", @@ -336077,7 +343857,7 @@ "time": 95.375, "timeString": "1 min 35 sec", "fuel": null, - "sulfur": 6000 + "sulfur": 2001 }, { "group": "guns", @@ -336161,7 +343941,7 @@ "time": 99.23, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "melee", @@ -336211,6 +343991,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 306, + "quantityTypeId": null, + "time": 54.8, + "timeString": "54 sec", + "fuel": 306, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 400, + "quantityTypeId": "-1211166256", + "time": 43.3, + "timeString": "43 sec", + "fuel": null, + "sulfur": 1332 + }, { "group": "explosive", "which": null, @@ -336257,7 +344061,7 @@ "time": 90.6, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 5332 + "sulfur": 2000 }, { "group": "melee", @@ -336377,7 +344181,7 @@ "time": 202.8, "timeString": "3 min 22 sec", "fuel": null, - "sulfur": 3639 + "sulfur": 1365 }, { "group": "guns", @@ -336413,7 +344217,7 @@ "time": 245.825, "timeString": "4 min 5 sec", "fuel": null, - "sulfur": 5719 + "sulfur": 2145 }, { "group": "melee", @@ -336470,8 +344274,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 100, - "timeString": "1 min 40 sec", + "time": 50, + "timeString": "50 sec", "fuel": null, "sulfur": null }, @@ -336605,7 +344409,7 @@ "time": 157.85, "timeString": "2 min 37 sec", "fuel": null, - "sulfur": 4999 + "sulfur": 1875 }, { "group": "guns", @@ -336665,7 +344469,7 @@ "time": 162.625, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 7500 + "sulfur": 2501 }, { "group": "guns", @@ -336674,8 +344478,8 @@ "caption": "Pistol Bullet", "quantity": 500, "quantityTypeId": "785728077", - "time": 127.9, - "timeString": "2 min 7 sec", + "time": 112.3, + "timeString": "1 min 52 sec", "fuel": null, "sulfur": 1250 }, @@ -336686,8 +344490,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 190, "quantityTypeId": "51984655", - "time": 71.2, - "timeString": "1 min 11 sec", + "time": 67.3, + "timeString": "1 min 7 sec", "fuel": null, "sulfur": 1583 }, @@ -336698,10 +344502,10 @@ "caption": "HV Pistol Ammo", "quantity": 500, "quantityTypeId": "-1691396643", - "time": 127.9, - "timeString": "2 min 7 sec", + "time": 112.3, + "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -336893,7 +344697,7 @@ "time": 125.4, "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 5332 + "sulfur": 2000 }, { "group": "melee", @@ -336978,8 +344782,8 @@ "quantityTypeId": null, "time": 4.9323852192856, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -337003,7 +344807,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -337147,7 +344951,7 @@ "time": 12.1314, "timeString": "12 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "explosive", @@ -337207,7 +345011,7 @@ "time": 92.6, "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "melee", @@ -337495,7 +345299,7 @@ "time": 19.475, "timeString": "19 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -337579,7 +345383,7 @@ "time": 6.5, "timeString": "6 sec", "fuel": null, - "sulfur": 1060 + "sulfur": 354 }, { "group": "melee", @@ -337651,7 +345455,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -337699,7 +345503,7 @@ "time": 16.64, "timeString": "16 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -337747,7 +345551,7 @@ "time": 5.52, "timeString": "5 sec", "fuel": null, - "sulfur": 940 + "sulfur": 313 }, { "group": "guns", @@ -337795,7 +345599,7 @@ "time": 16.475, "timeString": "16 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "guns", @@ -337879,7 +345683,7 @@ "time": 18.86, "timeString": "18 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -337929,6 +345733,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 62, + "quantityTypeId": null, + "time": 23.6, + "timeString": "23 sec", + "fuel": 62, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 80, + "quantityTypeId": "-1211166256", + "time": 7.9, + "timeString": "7 sec", + "fuel": null, + "sulfur": 266 + }, { "group": "explosive", "which": null, @@ -337975,7 +345803,7 @@ "time": 15.7, "timeString": "15 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -338095,7 +345923,7 @@ "time": 40.5, "timeString": "40 sec", "fuel": null, - "sulfur": 733 + "sulfur": 275 }, { "group": "guns", @@ -338131,7 +345959,7 @@ "time": 47.125, "timeString": "47 sec", "fuel": null, - "sulfur": 1146 + "sulfur": 430 }, { "group": "melee", @@ -338188,8 +346016,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 20, - "timeString": "20 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -338323,7 +346151,7 @@ "time": 30.35, "timeString": "30 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -338383,7 +346211,7 @@ "time": 29.85, "timeString": "29 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -338392,8 +346220,8 @@ "caption": "Pistol Bullet", "quantity": 100, "quantityTypeId": "785728077", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 250 }, @@ -338416,10 +346244,10 @@ "caption": "HV Pistol Ammo", "quantity": 100, "quantityTypeId": "-1691396643", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -338611,7 +346439,7 @@ "time": 21.88, "timeString": "21 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -338696,8 +346524,8 @@ "quantityTypeId": null, "time": 32.882568128571, "timeString": "32 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -338721,7 +346549,7 @@ "time": 196, "timeString": "3 min 16 sec", "fuel": null, - "sulfur": 660 + "sulfur": 396 }, { "group": "melee", @@ -338865,7 +346693,7 @@ "time": 108.6538, "timeString": "1 min 48 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "explosive", @@ -338925,7 +346753,7 @@ "time": 627.9, "timeString": "10 min 27 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "melee", @@ -339213,7 +347041,7 @@ "time": 131.4, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -339297,7 +347125,7 @@ "time": 75.25, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 6960 + "sulfur": 2321 }, { "group": "melee", @@ -339369,7 +347197,7 @@ "time": 667, "timeString": "11 min 7 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -339417,7 +347245,7 @@ "time": 121.96, "timeString": "2 min 1 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -339465,7 +347293,7 @@ "time": 58.98, "timeString": "58 sec", "fuel": null, - "sulfur": 6160 + "sulfur": 2054 }, { "group": "guns", @@ -339513,7 +347341,7 @@ "time": 128.25, "timeString": "2 min 8 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "guns", @@ -339597,7 +347425,7 @@ "time": 131.56, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -339647,6 +347475,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 407, + "quantityTypeId": null, + "time": 64.9, + "timeString": "1 min 4 sec", + "fuel": 407, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 534, + "quantityTypeId": "-1211166256", + "time": 56.7, + "timeString": "56 sec", + "fuel": null, + "sulfur": 1778 + }, { "group": "explosive", "which": null, @@ -339693,7 +347545,7 @@ "time": 119.6, "timeString": "1 min 59 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -339813,7 +347665,7 @@ "time": 270.45, "timeString": "4 min 30 sec", "fuel": null, - "sulfur": 4852 + "sulfur": 1820 }, { "group": "guns", @@ -339849,7 +347701,7 @@ "time": 328.9, "timeString": "5 min 28 sec", "fuel": null, - "sulfur": 7625 + "sulfur": 2860 }, { "group": "melee", @@ -339904,10 +347756,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 10, + "quantity": 6, "quantityTypeId": null, - "time": 676, - "timeString": "11 min 16 sec", + "time": 339, + "timeString": "5 min 39 sec", "fuel": null, "sulfur": null }, @@ -340041,7 +347893,7 @@ "time": 209.6, "timeString": "3 min 29 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -340101,7 +347953,7 @@ "time": 218.3, "timeString": "3 min 38 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -340110,8 +347962,8 @@ "caption": "Pistol Bullet", "quantity": 667, "quantityTypeId": "785728077", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, "sulfur": 1668 }, @@ -340122,8 +347974,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 253, "quantityTypeId": "51984655", - "time": 89.2, - "timeString": "1 min 29 sec", + "time": 81.4, + "timeString": "1 min 21 sec", "fuel": null, "sulfur": 2107 }, @@ -340134,10 +347986,10 @@ "caption": "HV Pistol Ammo", "quantity": 667, "quantityTypeId": "-1691396643", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, - "sulfur": 8891 + "sulfur": 3335 }, { "group": "guns", @@ -340329,7 +348181,7 @@ "time": 169.91, "timeString": "2 min 49 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -340414,8 +348266,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -340439,7 +348291,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -340583,7 +348435,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -340643,7 +348495,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -340931,7 +348783,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -341015,7 +348867,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -341087,7 +348939,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -341135,7 +348987,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -341183,7 +349035,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -341231,7 +349083,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -341315,7 +349167,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -341365,6 +349217,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -341411,7 +349287,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -341531,7 +349407,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -341567,7 +349443,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -341624,8 +349500,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 34, - "timeString": "34 sec", + "time": 17, + "timeString": "17 sec", "fuel": null, "sulfur": null }, @@ -341759,7 +349635,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -341819,7 +349695,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -341828,8 +349704,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -341852,10 +349728,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -342047,7 +349923,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -342132,8 +350008,8 @@ "quantityTypeId": null, "time": 12.330963048214, "timeString": "12 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -342157,7 +350033,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -342301,7 +350177,7 @@ "time": 12.1314, "timeString": "12 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "explosive", @@ -342361,7 +350237,7 @@ "time": 92.6, "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "melee", @@ -342757,7 +350633,7 @@ "time": 19.475, "timeString": "19 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -342841,7 +350717,7 @@ "time": 6.5, "timeString": "6 sec", "fuel": null, - "sulfur": 1060 + "sulfur": 354 }, { "group": "melee", @@ -342913,7 +350789,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -342961,7 +350837,7 @@ "time": 16.64, "timeString": "16 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -343009,7 +350885,7 @@ "time": 5.52, "timeString": "5 sec", "fuel": null, - "sulfur": 940 + "sulfur": 313 }, { "group": "guns", @@ -343057,7 +350933,7 @@ "time": 16.475, "timeString": "16 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "guns", @@ -343141,7 +351017,7 @@ "time": 18.86, "timeString": "18 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -343191,6 +351067,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 153, + "quantityTypeId": null, + "time": 36.1, + "timeString": "36 sec", + "fuel": 153, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 80, + "quantityTypeId": "-1211166256", + "time": 7.9, + "timeString": "7 sec", + "fuel": null, + "sulfur": 266 + }, { "group": "explosive", "which": null, @@ -343237,7 +351137,7 @@ "time": 15.7, "timeString": "15 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "guns", @@ -343381,7 +351281,7 @@ "time": 40.5, "timeString": "40 sec", "fuel": null, - "sulfur": 733 + "sulfur": 275 }, { "group": "guns", @@ -343417,7 +351317,7 @@ "time": 47.125, "timeString": "47 sec", "fuel": null, - "sulfur": 1146 + "sulfur": 430 }, { "group": "melee", @@ -343474,8 +351374,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 20, - "timeString": "20 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -343609,7 +351509,7 @@ "time": 30.35, "timeString": "30 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -343669,7 +351569,7 @@ "time": 29.85, "timeString": "29 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -343678,8 +351578,8 @@ "caption": "Pistol Bullet", "quantity": 100, "quantityTypeId": "785728077", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 250 }, @@ -343702,10 +351602,10 @@ "caption": "HV Pistol Ammo", "quantity": 100, "quantityTypeId": "-1691396643", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -343921,7 +351821,7 @@ "time": 21.88, "timeString": "21 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -344018,8 +351918,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -344043,7 +351943,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -344187,7 +352087,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -344247,7 +352147,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -344535,7 +352435,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -344619,7 +352519,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -344691,7 +352591,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -344739,7 +352639,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -344787,7 +352687,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -344835,7 +352735,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -344919,7 +352819,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -344969,6 +352869,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -345015,7 +352939,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -345135,7 +353059,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -345171,7 +353095,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -345226,10 +353150,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 7, + "quantity": 5, "quantityTypeId": null, - "time": 506, - "timeString": "8 min 26 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -345363,7 +353287,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -345423,7 +353347,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -345432,8 +353356,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -345444,8 +353368,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 28, "quantityTypeId": "51984655", - "time": 31.6, - "timeString": "31 sec", + "time": 27.7, + "timeString": "27 sec", "fuel": null, "sulfur": 233 }, @@ -345456,10 +353380,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -345651,7 +353575,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -345736,8 +353660,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -345761,7 +353685,7 @@ "time": 46, "timeString": "46 sec", "fuel": null, - "sulfur": 160 + "sulfur": 96 }, { "group": "melee", @@ -345905,7 +353829,7 @@ "time": 17.3312, "timeString": "17 sec", "fuel": null, - "sulfur": 1340 + "sulfur": 447 }, { "group": "explosive", @@ -345965,7 +353889,7 @@ "time": 102.7, "timeString": "1 min 42 sec", "fuel": null, - "sulfur": 840 + "sulfur": 280 }, { "group": "melee", @@ -346253,7 +354177,7 @@ "time": 20.4875, "timeString": "20 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -346337,7 +354261,7 @@ "time": 7.125, "timeString": "7 sec", "fuel": null, - "sulfur": 1160 + "sulfur": 387 }, { "group": "melee", @@ -346409,7 +354333,7 @@ "time": 109.8, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 840 + "sulfur": 280 }, { "group": "guns", @@ -346457,7 +354381,7 @@ "time": 17.72, "timeString": "17 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "guns", @@ -346505,7 +354429,7 @@ "time": 6.12, "timeString": "6 sec", "fuel": null, - "sulfur": 1040 + "sulfur": 347 }, { "group": "guns", @@ -346553,7 +354477,7 @@ "time": 20.775, "timeString": "20 sec", "fuel": null, - "sulfur": 1340 + "sulfur": 447 }, { "group": "guns", @@ -346637,7 +354561,7 @@ "time": 20.06, "timeString": "20 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "melee", @@ -346687,6 +354611,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 89, + "quantityTypeId": "-1211166256", + "time": 8.8, + "timeString": "8 sec", + "fuel": null, + "sulfur": 296 + }, { "group": "explosive", "which": null, @@ -346733,7 +354681,7 @@ "time": 16.6, "timeString": "16 sec", "fuel": null, - "sulfur": 1186 + "sulfur": 445 }, { "group": "melee", @@ -346853,7 +354801,7 @@ "time": 45, "timeString": "45 sec", "fuel": null, - "sulfur": 813 + "sulfur": 305 }, { "group": "guns", @@ -346889,7 +354837,7 @@ "time": 52.1, "timeString": "52 sec", "fuel": null, - "sulfur": 1280 + "sulfur": 480 }, { "group": "melee", @@ -346944,10 +354892,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 3, + "quantity": 2, "quantityTypeId": null, - "time": 169, - "timeString": "2 min 49 sec", + "time": 85, + "timeString": "1 min 25 sec", "fuel": null, "sulfur": null }, @@ -347081,7 +355029,7 @@ "time": 34.45, "timeString": "34 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -347141,7 +355089,7 @@ "time": 35.65, "timeString": "35 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "guns", @@ -347150,8 +355098,8 @@ "caption": "Pistol Bullet", "quantity": 112, "quantityTypeId": "785728077", - "time": 26.7, - "timeString": "26 sec", + "time": 22.8, + "timeString": "22 sec", "fuel": null, "sulfur": 280 }, @@ -347174,10 +355122,10 @@ "caption": "HV Pistol Ammo", "quantity": 112, "quantityTypeId": "-1691396643", - "time": 26.7, - "timeString": "26 sec", + "time": 22.8, + "timeString": "22 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "guns", @@ -347369,7 +355317,7 @@ "time": 26.92, "timeString": "26 sec", "fuel": null, - "sulfur": 1186 + "sulfur": 445 }, { "group": "melee", @@ -347454,8 +355402,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -347479,7 +355427,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -347623,7 +355571,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -347683,7 +355631,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -347971,7 +355919,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -348055,7 +356003,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -348127,7 +356075,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -348175,7 +356123,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -348223,7 +356171,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -348271,7 +356219,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -348355,7 +356303,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -348405,6 +356353,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -348451,7 +356423,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -348571,7 +356543,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -348607,7 +356579,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -348664,8 +356636,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -348799,7 +356771,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -348859,7 +356831,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -348880,8 +356852,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -348895,7 +356867,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -349087,7 +357059,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -349172,8 +357144,8 @@ "quantityTypeId": null, "time": 88.206420321427, "timeString": "1 min 28 sec", - "fuel": 506, - "sulfur": 1220 + "fuel": 150, + "sulfur": 600 }, { "group": "explosive", @@ -349197,7 +357169,7 @@ "time": 484, "timeString": "8 min 4 sec", "fuel": null, - "sulfur": 1620 + "sulfur": 972 }, { "group": "melee", @@ -349341,7 +357313,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -349401,7 +357373,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -349689,7 +357661,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -349773,7 +357745,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -349845,7 +357817,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -349893,7 +357865,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -349941,7 +357913,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -349989,7 +357961,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -350073,7 +358045,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -350123,6 +358095,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1017, + "quantityTypeId": null, + "time": 139.5, + "timeString": "2 min 19 sec", + "fuel": 1017, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "explosive", "which": null, @@ -350169,7 +358165,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -350289,7 +358285,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -350325,7 +358321,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -350380,10 +358376,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 23, + "quantity": 15, "quantityTypeId": null, - "time": 1689, - "timeString": "28 min 9 sec", + "time": 848, + "timeString": "14 min 8 sec", "fuel": null, "sulfur": null }, @@ -350517,7 +358513,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -350577,7 +358573,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -350586,8 +358582,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -350598,8 +358594,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 631, "quantityTypeId": "51984655", - "time": 189.4, - "timeString": "3 min 9 sec", + "time": 169.9, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": 5256 }, @@ -350610,10 +358606,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -350805,7 +358801,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -350903,7 +358899,7 @@ "time": 898, "timeString": "14 min 58 sec", "fuel": null, - "sulfur": 3000 + "sulfur": 1800 }, { "group": "melee", @@ -351047,7 +359043,7 @@ "time": 82652.6, "timeString": "22 hours 57 min 32 sec", "fuel": null, - "sulfur": 6000000 + "sulfur": 2001000 }, { "group": "explosive", @@ -351107,7 +359103,7 @@ "time": 473432.5, "timeString": "131 hours 30 min 32 sec", "fuel": null, - "sulfur": 3750000 + "sulfur": 1250625 }, { "group": "melee", @@ -351335,7 +359331,7 @@ "time": 100259.375, "timeString": "27 hours 50 min 59 sec", "fuel": null, - "sulfur": 4998750 + "sulfur": 1875000 }, { "group": "guns", @@ -351419,7 +359415,7 @@ "time": 60320.75, "timeString": "16 hours 45 min 20 sec", "fuel": null, - "sulfur": 5217400 + "sulfur": 1740003 }, { "group": "melee", @@ -351491,7 +359487,7 @@ "time": 502497, "timeString": "139 hours 34 min 57 sec", "fuel": null, - "sulfur": 3750000 + "sulfur": 1250625 }, { "group": "guns", @@ -351539,7 +359535,7 @@ "time": 93496, "timeString": "25 hours 58 min 16 sec", "fuel": null, - "sulfur": 7500000 + "sulfur": 2501250 }, { "group": "guns", @@ -351587,7 +359583,7 @@ "time": 44717.94, "timeString": "12 hours 25 min 17 sec", "fuel": null, - "sulfur": 4615400 + "sulfur": 1539236 }, { "group": "guns", @@ -351635,7 +359631,7 @@ "time": 98621.75, "timeString": "27 hours 23 min 41 sec", "fuel": null, - "sulfur": 6000000 + "sulfur": 2001000 }, { "group": "guns", @@ -351719,7 +359715,7 @@ "time": 99777.23, "timeString": "27 hours 42 min 57 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "melee", @@ -351769,6 +359765,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 400000, + "quantityTypeId": "-1211166256", + "time": 44532.1, + "timeString": "12 hours 22 min 12 sec", + "fuel": null, + "sulfur": 1332000 + }, { "group": "guns", "which": null, @@ -351803,7 +359811,7 @@ "time": 91998.6, "timeString": "25 hours 33 min 18 sec", "fuel": null, - "sulfur": 5332000 + "sulfur": 2000000 }, { "group": "melee", @@ -351923,7 +359931,7 @@ "time": 204543.45, "timeString": "56 hours 49 min 3 sec", "fuel": null, - "sulfur": 3635464 + "sulfur": 1363640 }, { "group": "guns", @@ -351959,7 +359967,7 @@ "time": 247766.4, "timeString": "68 hours 49 min 26 sec", "fuel": null, - "sulfur": 5712865 + "sulfur": 2142860 }, { "group": "melee", @@ -352014,10 +360022,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 348, + "quantity": 224, "quantityTypeId": null, - "time": 25347, - "timeString": "7 hours 2 min 27 sec", + "time": 12723, + "timeString": "3 hours 32 min 3 sec", "fuel": null, "sulfur": null }, @@ -352151,7 +360159,7 @@ "time": 159372.1, "timeString": "44 hours 16 min 12 sec", "fuel": null, - "sulfur": 4998750 + "sulfur": 1875000 }, { "group": "guns", @@ -352211,7 +360219,7 @@ "time": 164646.15, "timeString": "45 hours 44 min 6 sec", "fuel": null, - "sulfur": 7500000 + "sulfur": 2501250 }, { "group": "guns", @@ -352220,8 +360228,8 @@ "caption": "Pistol Bullet", "quantity": 500000, "quantityTypeId": "785728077", - "time": 131248.6, - "timeString": "36 hours 27 min 28 sec", + "time": 114997.3, + "timeString": "31 hours 56 min 37 sec", "fuel": null, "sulfur": 1250000 }, @@ -352232,8 +360240,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 500000, "quantityTypeId": "51984655", - "time": 131248.6, - "timeString": "36 hours 27 min 28 sec", + "time": 114997.3, + "timeString": "31 hours 56 min 37 sec", "fuel": null, "sulfur": 4165000 }, @@ -352244,10 +360252,10 @@ "caption": "HV Pistol Ammo", "quantity": 500000, "quantityTypeId": "-1691396643", - "time": 131248.6, - "timeString": "36 hours 27 min 28 sec", + "time": 114997.3, + "timeString": "31 hours 56 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -352439,7 +360447,7 @@ "time": 129396, "timeString": "35 hours 56 min 36 sec", "fuel": null, - "sulfur": 5332000 + "sulfur": 2000000 }, { "group": "melee", @@ -352524,8 +360532,8 @@ "quantityTypeId": null, "time": 88.206420321427, "timeString": "1 min 28 sec", - "fuel": 506, - "sulfur": 1220 + "fuel": 150, + "sulfur": 600 }, { "group": "explosive", @@ -352549,7 +360557,7 @@ "time": 484, "timeString": "8 min 4 sec", "fuel": null, - "sulfur": 1620 + "sulfur": 972 }, { "group": "melee", @@ -352693,7 +360701,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -352753,7 +360761,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -353041,7 +361049,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -353125,7 +361133,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -353197,7 +361205,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -353245,7 +361253,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -353293,7 +361301,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -353341,7 +361349,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -353425,7 +361433,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -353475,6 +361483,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1017, + "quantityTypeId": null, + "time": 139.5, + "timeString": "2 min 19 sec", + "fuel": 1017, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "explosive", "which": null, @@ -353521,7 +361553,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -353641,7 +361673,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -353677,7 +361709,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -353732,10 +361764,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 23, + "quantity": 15, "quantityTypeId": null, - "time": 1689, - "timeString": "28 min 9 sec", + "time": 848, + "timeString": "14 min 8 sec", "fuel": null, "sulfur": null }, @@ -353869,7 +361901,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -353929,7 +361961,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -353938,8 +361970,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -353950,8 +361982,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 631, "quantityTypeId": "51984655", - "time": 189.4, - "timeString": "3 min 9 sec", + "time": 169.9, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": 5256 }, @@ -353962,10 +361994,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -354157,7 +362189,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -354255,7 +362287,7 @@ "time": 598, "timeString": "9 min 58 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 1200 }, { "group": "melee", @@ -354399,7 +362431,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -354459,7 +362491,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -354687,7 +362719,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -354771,7 +362803,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -354843,7 +362875,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -354891,7 +362923,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -354939,7 +362971,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -354987,7 +363019,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -355071,7 +363103,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -355121,6 +363153,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": null, @@ -355155,7 +363199,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -355275,7 +363319,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -355311,7 +363355,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -355366,10 +363410,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 232, + "quantity": 224, "quantityTypeId": null, - "time": 16898, - "timeString": "4 hours 41 min 38 sec", + "time": 12723, + "timeString": "3 hours 32 min 3 sec", "fuel": null, "sulfur": null }, @@ -355503,7 +363547,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -355563,7 +363607,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -355572,8 +363616,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -355584,8 +363628,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -355596,10 +363640,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -355791,7 +363835,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -355876,8 +363920,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -355901,7 +363945,7 @@ "time": 100, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 340 + "sulfur": 204 }, { "group": "melee", @@ -356045,7 +364089,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -356105,7 +364149,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -356393,7 +364437,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -356477,7 +364521,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -356549,7 +364593,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -356597,7 +364641,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -356645,7 +364689,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -356693,7 +364737,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -356777,7 +364821,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -356827,6 +364871,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -356873,7 +364941,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -356993,7 +365061,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -357029,7 +365097,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -357086,8 +365154,8 @@ "caption": null, "quantity": 5, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -357221,7 +365289,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -357281,7 +365349,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -357290,8 +365358,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -357302,8 +365370,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 127, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 53.2, + "timeString": "53 sec", "fuel": null, "sulfur": 1058 }, @@ -357314,10 +365382,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -357509,7 +365577,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -357594,8 +365662,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -357619,7 +365687,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -357763,7 +365831,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -357823,7 +365891,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -358111,7 +366179,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -358195,7 +366263,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -358267,7 +366335,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -358315,7 +366383,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -358363,7 +366431,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -358411,7 +366479,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -358495,7 +366563,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -358545,6 +366613,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -358591,7 +366683,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -358711,7 +366803,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -358747,7 +366839,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -358802,10 +366894,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 7, + "quantity": 5, "quantityTypeId": null, - "time": 506, - "timeString": "8 min 26 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -358939,7 +367031,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -358999,7 +367091,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -359008,8 +367100,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -359020,8 +367112,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 28, "quantityTypeId": "51984655", - "time": 31.6, - "timeString": "31 sec", + "time": 27.7, + "timeString": "27 sec", "fuel": null, "sulfur": 233 }, @@ -359032,10 +367124,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -359227,7 +367319,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -359312,8 +367404,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -359337,7 +367429,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -359481,7 +367573,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -359541,7 +367633,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -359829,7 +367921,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -359913,7 +368005,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -359985,7 +368077,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -360033,7 +368125,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -360081,7 +368173,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -360129,7 +368221,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -360213,7 +368305,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -360263,6 +368355,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -360309,7 +368425,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -360429,7 +368545,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -360465,7 +368581,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -360522,8 +368638,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -360657,7 +368773,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -360717,7 +368833,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -360738,8 +368854,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -360753,7 +368869,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -360945,7 +369061,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -361030,8 +369146,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -361055,7 +369171,7 @@ "time": 22, "timeString": "22 sec", "fuel": null, - "sulfur": 80 + "sulfur": 48 }, { "group": "melee", @@ -361199,7 +369315,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -361259,7 +369375,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -361547,7 +369663,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -361631,7 +369747,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -361703,7 +369819,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -361751,7 +369867,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -361799,7 +369915,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -361847,7 +369963,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -361931,7 +370047,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -361981,6 +370097,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -362027,7 +370167,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -362147,7 +370287,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -362183,7 +370323,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -362240,8 +370380,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -362375,7 +370515,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -362435,7 +370575,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -362471,7 +370611,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -362663,7 +370803,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -362748,8 +370888,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -362773,7 +370913,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -362917,7 +371057,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -362977,7 +371117,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -363373,7 +371513,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -363457,7 +371597,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -363529,7 +371669,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -363577,7 +371717,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -363625,7 +371765,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -363673,7 +371813,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -363757,7 +371897,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "melee", @@ -363807,6 +371947,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 3 + }, { "group": "explosive", "which": null, @@ -363853,7 +372017,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -363997,7 +372161,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -364033,7 +372197,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "melee", @@ -364090,8 +372254,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 2, + "timeString": "2 sec", "fuel": null, "sulfur": null }, @@ -364225,7 +372389,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -364285,7 +372449,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -364321,7 +372485,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -364537,7 +372701,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "melee", @@ -364634,8 +372798,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -364659,7 +372823,7 @@ "time": 22, "timeString": "22 sec", "fuel": null, - "sulfur": 80 + "sulfur": 48 }, { "group": "melee", @@ -364803,7 +372967,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -364863,7 +373027,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -365151,7 +373315,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -365235,7 +373399,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -365307,7 +373471,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -365355,7 +373519,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -365403,7 +373567,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -365451,7 +373615,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -365535,7 +373699,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -365585,6 +373749,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -365631,7 +373819,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -365751,7 +373939,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -365787,7 +373975,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -365844,8 +374032,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -365979,7 +374167,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -366039,7 +374227,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -366075,7 +374263,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -366267,7 +374455,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -366352,8 +374540,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -366377,7 +374565,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -366521,7 +374709,7 @@ "time": 1.7329, "timeString": "1 sec", "fuel": null, - "sulfur": 280 + "sulfur": 93 }, { "group": "explosive", @@ -366581,7 +374769,7 @@ "time": 20.2, "timeString": "20 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -366977,7 +375165,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -367061,7 +375249,7 @@ "time": 1.375, "timeString": "1 sec", "fuel": null, - "sulfur": 240 + "sulfur": 80 }, { "group": "melee", @@ -367133,7 +375321,7 @@ "time": 21.2, "timeString": "21 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "guns", @@ -367181,7 +375369,7 @@ "time": 1.92, "timeString": "1 sec", "fuel": null, - "sulfur": 340 + "sulfur": 113 }, { "group": "guns", @@ -367229,7 +375417,7 @@ "time": 1.2, "timeString": "1 sec", "fuel": null, - "sulfur": 220 + "sulfur": 73 }, { "group": "guns", @@ -367277,7 +375465,7 @@ "time": 2.275, "timeString": "2 sec", "fuel": null, - "sulfur": 280 + "sulfur": 93 }, { "group": "guns", @@ -367361,7 +375549,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -367411,6 +375599,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 18, + "quantityTypeId": "-1211166256", + "time": 1.7, + "timeString": "1 sec", + "fuel": null, + "sulfur": 60 + }, { "group": "explosive", "which": null, @@ -367457,7 +375669,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 240 + "sulfur": 90 }, { "group": "guns", @@ -367601,7 +375813,7 @@ "time": 9, "timeString": "9 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -367637,7 +375849,7 @@ "time": 9.775, "timeString": "9 sec", "fuel": null, - "sulfur": 267 + "sulfur": 100 }, { "group": "melee", @@ -367694,8 +375906,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -367829,7 +376041,7 @@ "time": 5.15, "timeString": "5 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -367889,7 +376101,7 @@ "time": 7.025, "timeString": "7 sec", "fuel": null, - "sulfur": 340 + "sulfur": 113 }, { "group": "guns", @@ -367925,7 +376137,7 @@ "time": 2.2, "timeString": "2 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "guns", @@ -368141,7 +376353,7 @@ "time": 2.21, "timeString": "2 sec", "fuel": null, - "sulfur": 240 + "sulfur": 90 }, { "group": "melee", @@ -368238,8 +376450,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -368263,7 +376475,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -368407,7 +376619,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -368467,7 +376679,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -368863,7 +377075,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -368947,7 +377159,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -369019,7 +377231,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -369067,7 +377279,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -369115,7 +377327,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -369163,7 +377375,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -369247,7 +377459,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -369297,6 +377509,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 18, + "timeString": "18 sec", + "fuel": 6, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": null, @@ -369343,7 +377579,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -369487,7 +377723,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -369523,7 +377759,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -369715,7 +377951,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -369775,7 +378011,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -369811,7 +378047,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -370027,7 +378263,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -370124,8 +378360,8 @@ "quantityTypeId": null, "time": 1.2330963048214, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -370149,7 +378385,7 @@ "time": 70, "timeString": "1 min 10 sec", "fuel": null, - "sulfur": 240 + "sulfur": 144 }, { "group": "melee", @@ -370293,7 +378529,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -370353,7 +378589,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -370641,7 +378877,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -370725,7 +378961,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -370797,7 +379033,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -370845,7 +379081,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -370893,7 +379129,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -370941,7 +379177,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -371025,7 +379261,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -371075,6 +379311,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 16, + "quantityTypeId": null, + "time": 19, + "timeString": "19 sec", + "fuel": 16, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -371121,7 +379381,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -371241,7 +379501,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -371277,7 +379537,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -371332,10 +379592,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 4, + "quantity": 3, "quantityTypeId": null, - "time": 253, - "timeString": "4 min 13 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -371469,7 +379729,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -371529,7 +379789,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -371538,8 +379798,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -371562,10 +379822,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -371757,7 +380017,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -371842,8 +380102,8 @@ "quantityTypeId": null, "time": 4.9323852192856, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -371867,7 +380127,7 @@ "time": 82, "timeString": "1 min 22 sec", "fuel": null, - "sulfur": 280 + "sulfur": 168 }, { "group": "melee", @@ -372011,7 +380271,7 @@ "time": 12.1314, "timeString": "12 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "explosive", @@ -372071,7 +380331,7 @@ "time": 92.6, "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "melee", @@ -372359,7 +380619,7 @@ "time": 19.475, "timeString": "19 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -372443,7 +380703,7 @@ "time": 6.5, "timeString": "6 sec", "fuel": null, - "sulfur": 1060 + "sulfur": 354 }, { "group": "melee", @@ -372515,7 +380775,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -372563,7 +380823,7 @@ "time": 16.64, "timeString": "16 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -372611,7 +380871,7 @@ "time": 5.52, "timeString": "5 sec", "fuel": null, - "sulfur": 940 + "sulfur": 313 }, { "group": "guns", @@ -372659,7 +380919,7 @@ "time": 16.475, "timeString": "16 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "guns", @@ -372743,7 +381003,7 @@ "time": 18.86, "timeString": "18 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -372793,6 +381053,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 62, + "quantityTypeId": null, + "time": 23.6, + "timeString": "23 sec", + "fuel": 62, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 80, + "quantityTypeId": "-1211166256", + "time": 7.9, + "timeString": "7 sec", + "fuel": null, + "sulfur": 266 + }, { "group": "explosive", "which": null, @@ -372839,7 +381123,7 @@ "time": 15.7, "timeString": "15 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -372959,7 +381243,7 @@ "time": 40.5, "timeString": "40 sec", "fuel": null, - "sulfur": 733 + "sulfur": 275 }, { "group": "guns", @@ -372995,7 +381279,7 @@ "time": 47.125, "timeString": "47 sec", "fuel": null, - "sulfur": 1146 + "sulfur": 430 }, { "group": "melee", @@ -373052,8 +381336,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 20, - "timeString": "20 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -373187,7 +381471,7 @@ "time": 30.35, "timeString": "30 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -373247,7 +381531,7 @@ "time": 29.85, "timeString": "29 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -373256,8 +381540,8 @@ "caption": "Pistol Bullet", "quantity": 100, "quantityTypeId": "785728077", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 250 }, @@ -373280,10 +381564,10 @@ "caption": "HV Pistol Ammo", "quantity": 100, "quantityTypeId": "-1691396643", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -373475,7 +381759,7 @@ "time": 21.88, "timeString": "21 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -373560,8 +381844,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -373585,7 +381869,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -373729,7 +382013,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -373789,7 +382073,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -374077,7 +382361,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -374161,7 +382445,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -374233,7 +382517,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -374281,7 +382565,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -374329,7 +382613,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -374377,7 +382661,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -374461,7 +382745,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -374511,6 +382795,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -374557,7 +382865,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -374677,7 +382985,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -374713,7 +383021,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -374770,8 +383078,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -374905,7 +383213,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -374965,7 +383273,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -374986,8 +383294,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -375001,7 +383309,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -375193,7 +383501,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -375291,7 +383599,7 @@ "time": 226, "timeString": "3 min 46 sec", "fuel": null, - "sulfur": 760 + "sulfur": 456 }, { "group": "explosive", @@ -375538,10 +383846,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 28, + "quantity": 27, "quantityTypeId": null, - "time": 2027, - "timeString": "33 min 47 sec", + "time": 1526, + "timeString": "25 min 26 sec", "fuel": null, "sulfur": null }, @@ -375701,7 +384009,7 @@ "time": 226, "timeString": "3 min 46 sec", "fuel": null, - "sulfur": 760 + "sulfur": 456 }, { "group": "explosive", @@ -375948,10 +384256,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 28, + "quantity": 27, "quantityTypeId": null, - "time": 2027, - "timeString": "33 min 47 sec", + "time": 1526, + "timeString": "25 min 26 sec", "fuel": null, "sulfur": null }, @@ -376098,8 +384406,8 @@ "quantityTypeId": null, "time": 2.0551605080357, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -376123,7 +384431,7 @@ "time": 148, "timeString": "2 min 28 sec", "fuel": null, - "sulfur": 500 + "sulfur": 300 }, { "group": "melee", @@ -376713,6 +385021,18 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 26, + "quantityTypeId": null, + "time": 20, + "timeString": "20 sec", + "fuel": 26, + "sulfur": null + }, { "group": "explosive", "which": null, @@ -376864,8 +385184,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 9, - "timeString": "9 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -376984,8 +385304,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -377204,8 +385524,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -377229,7 +385549,7 @@ "time": 22, "timeString": "22 sec", "fuel": null, - "sulfur": 80 + "sulfur": 48 }, { "group": "melee", @@ -377373,7 +385693,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -377433,7 +385753,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -377721,7 +386041,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -377805,7 +386125,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -377877,7 +386197,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -377925,7 +386245,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -377973,7 +386293,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -378021,7 +386341,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -378105,7 +386425,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -378155,6 +386475,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -378201,7 +386545,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -378321,7 +386665,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -378357,7 +386701,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -378414,8 +386758,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -378549,7 +386893,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -378609,7 +386953,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -378645,7 +386989,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -378837,7 +387181,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -378935,7 +387279,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -379055,7 +387399,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -379115,7 +387459,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -379319,7 +387663,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -379403,7 +387747,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -379475,7 +387819,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -379523,7 +387867,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -379571,7 +387915,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -379619,7 +387963,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -379703,7 +388047,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -379729,6 +388073,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "guns", "which": null, @@ -379763,7 +388119,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -379871,7 +388227,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -379907,7 +388263,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -380051,7 +388407,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -380111,7 +388467,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -380147,7 +388503,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -380339,7 +388695,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -380400,8 +388756,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -380425,7 +388781,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -380569,7 +388925,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -380629,7 +388985,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -381025,7 +389381,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -381109,7 +389465,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -381181,7 +389537,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -381229,7 +389585,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -381277,7 +389633,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -381325,7 +389681,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -381409,7 +389765,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -381459,6 +389815,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -381505,7 +389885,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -381649,7 +390029,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -381685,7 +390065,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -381742,8 +390122,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 3, + "timeString": "3 sec", "fuel": null, "sulfur": null }, @@ -381877,7 +390257,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -381937,7 +390317,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -381973,7 +390353,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -382189,7 +390569,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -382286,8 +390666,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -382311,7 +390691,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -382455,7 +390835,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -382515,7 +390895,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -382911,7 +391291,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -382995,7 +391375,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -383067,7 +391447,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -383115,7 +391495,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -383163,7 +391543,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -383211,7 +391591,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -383295,7 +391675,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -383345,6 +391725,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -383391,7 +391795,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -383535,7 +391939,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -383571,7 +391975,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -383628,8 +392032,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 3, + "timeString": "3 sec", "fuel": null, "sulfur": null }, @@ -383763,7 +392167,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -383823,7 +392227,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -383859,7 +392263,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -384075,7 +392479,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -384172,8 +392576,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -384197,7 +392601,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -384341,7 +392745,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -384401,7 +392805,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -384689,7 +393093,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -384773,7 +393177,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -384845,7 +393249,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -384893,7 +393297,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -384941,7 +393345,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -384989,7 +393393,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -385073,7 +393477,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -385123,6 +393527,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -385169,7 +393597,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -385289,7 +393717,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -385325,7 +393753,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -385382,8 +393810,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -385517,7 +393945,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -385577,7 +394005,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -385598,8 +394026,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -385613,7 +394041,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -385805,7 +394233,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -385903,7 +394331,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -386023,7 +394451,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -386083,7 +394511,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -386287,7 +394715,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -386371,7 +394799,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -386443,7 +394871,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -386491,7 +394919,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -386539,7 +394967,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -386587,7 +395015,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -386671,7 +395099,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -386697,6 +395125,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "guns", "which": null, @@ -386731,7 +395171,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -386839,7 +395279,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -386875,7 +395315,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -387019,7 +395459,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -387079,7 +395519,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -387115,7 +395555,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -387307,7 +395747,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -387368,8 +395808,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -387393,7 +395833,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -387537,7 +395977,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -387597,7 +396037,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -387885,7 +396325,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -387969,7 +396409,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -388041,7 +396481,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -388089,7 +396529,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -388137,7 +396577,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -388185,7 +396625,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -388269,7 +396709,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -388319,6 +396759,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -388365,7 +396829,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -388485,7 +396949,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -388521,7 +396985,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -388578,8 +397042,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -388713,7 +397177,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -388773,7 +397237,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -388809,7 +397273,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -389001,7 +397465,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -389086,8 +397550,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -389111,7 +397575,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -389255,7 +397719,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -389315,7 +397779,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -389603,7 +398067,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -389687,7 +398151,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -389759,7 +398223,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -389807,7 +398271,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -389855,7 +398319,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -389903,7 +398367,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -389987,7 +398451,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -390037,6 +398501,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -390083,7 +398571,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -390203,7 +398691,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -390239,7 +398727,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -390296,8 +398784,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -390431,7 +398919,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -390491,7 +398979,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -390512,8 +399000,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -390527,7 +399015,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -390719,7 +399207,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -390804,8 +399292,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -390829,7 +399317,7 @@ "time": 28, "timeString": "28 sec", "fuel": null, - "sulfur": 100 + "sulfur": 60 }, { "group": "melee", @@ -390973,7 +399461,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -391033,7 +399521,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -391321,7 +399809,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -391405,7 +399893,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -391477,7 +399965,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -391525,7 +400013,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -391573,7 +400061,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -391621,7 +400109,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -391705,7 +400193,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -391755,6 +400243,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -391801,7 +400313,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -391921,7 +400433,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -391957,7 +400469,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -392014,8 +400526,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 4, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -392149,7 +400661,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -392209,7 +400721,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -392245,7 +400757,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -392437,7 +400949,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -392522,8 +401034,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -392547,7 +401059,7 @@ "time": 28, "timeString": "28 sec", "fuel": null, - "sulfur": 100 + "sulfur": 60 }, { "group": "melee", @@ -392691,7 +401203,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -392751,7 +401263,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -393039,7 +401551,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -393123,7 +401635,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -393195,7 +401707,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -393243,7 +401755,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -393291,7 +401803,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -393339,7 +401851,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -393423,7 +401935,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -393473,6 +401985,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -393519,7 +402055,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -393639,7 +402175,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -393675,7 +402211,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -393732,8 +402268,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 4, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -393867,7 +402403,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -393927,7 +402463,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -393963,7 +402499,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -394155,7 +402691,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -394240,8 +402776,8 @@ "quantityTypeId": null, "time": 2.8772247112499, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -394265,7 +402801,7 @@ "time": 46, "timeString": "46 sec", "fuel": null, - "sulfur": 160 + "sulfur": 96 }, { "group": "melee", @@ -394409,7 +402945,7 @@ "time": 8.7989, "timeString": "8 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "explosive", @@ -394469,7 +403005,7 @@ "time": 52.2, "timeString": "52 sec", "fuel": null, - "sulfur": 440 + "sulfur": 147 }, { "group": "melee", @@ -394757,7 +403293,7 @@ "time": 10.4125, "timeString": "10 sec", "fuel": null, - "sulfur": 587 + "sulfur": 220 }, { "group": "guns", @@ -394841,7 +403377,7 @@ "time": 3.75, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "melee", @@ -394913,7 +403449,7 @@ "time": 56.2, "timeString": "56 sec", "fuel": null, - "sulfur": 440 + "sulfur": 147 }, { "group": "guns", @@ -394961,7 +403497,7 @@ "time": 9.04, "timeString": "9 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "guns", @@ -395009,7 +403545,7 @@ "time": 3.12, "timeString": "3 sec", "fuel": null, - "sulfur": 540 + "sulfur": 180 }, { "group": "guns", @@ -395057,7 +403593,7 @@ "time": 9.025, "timeString": "9 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "guns", @@ -395141,7 +403677,7 @@ "time": 10.18, "timeString": "10 sec", "fuel": null, - "sulfur": 520 + "sulfur": 195 }, { "group": "melee", @@ -395191,6 +403727,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 36, + "quantityTypeId": null, + "time": 21, + "timeString": "21 sec", + "fuel": 36, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 47, + "quantityTypeId": "-1211166256", + "time": 4.6, + "timeString": "4 sec", + "fuel": null, + "sulfur": 157 + }, { "group": "explosive", "which": null, @@ -395237,7 +403797,7 @@ "time": 8.5, "timeString": "8 sec", "fuel": null, - "sulfur": 627 + "sulfur": 235 }, { "group": "melee", @@ -395357,7 +403917,7 @@ "time": 22.65, "timeString": "22 sec", "fuel": null, - "sulfur": 427 + "sulfur": 160 }, { "group": "guns", @@ -395393,7 +403953,7 @@ "time": 27.925, "timeString": "27 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "melee", @@ -395450,8 +404010,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 12, - "timeString": "12 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -395585,7 +404145,7 @@ "time": 17.45, "timeString": "17 sec", "fuel": null, - "sulfur": 587 + "sulfur": 220 }, { "group": "guns", @@ -395645,7 +404205,7 @@ "time": 15.975, "timeString": "15 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "guns", @@ -395654,8 +404214,8 @@ "caption": "Pistol Bullet", "quantity": 59, "quantityTypeId": "785728077", - "time": 13.6, - "timeString": "13 sec", + "time": 9.7, + "timeString": "9 sec", "fuel": null, "sulfur": 148 }, @@ -395678,10 +404238,10 @@ "caption": "HV Pistol Ammo", "quantity": 59, "quantityTypeId": "-1691396643", - "time": 13.6, - "timeString": "13 sec", + "time": 9.7, + "timeString": "9 sec", "fuel": null, - "sulfur": 786 + "sulfur": 295 }, { "group": "guns", @@ -395873,7 +404433,7 @@ "time": 13.72, "timeString": "13 sec", "fuel": null, - "sulfur": 627 + "sulfur": 235 }, { "group": "melee", @@ -395958,8 +404518,8 @@ "quantityTypeId": null, "time": 2.8772247112499, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -395983,7 +404543,7 @@ "time": 46, "timeString": "46 sec", "fuel": null, - "sulfur": 160 + "sulfur": 96 }, { "group": "melee", @@ -396127,7 +404687,7 @@ "time": 8.7989, "timeString": "8 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "explosive", @@ -396187,7 +404747,7 @@ "time": 52.2, "timeString": "52 sec", "fuel": null, - "sulfur": 440 + "sulfur": 147 }, { "group": "melee", @@ -396475,7 +405035,7 @@ "time": 10.4125, "timeString": "10 sec", "fuel": null, - "sulfur": 587 + "sulfur": 220 }, { "group": "guns", @@ -396559,7 +405119,7 @@ "time": 3.75, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "melee", @@ -396631,7 +405191,7 @@ "time": 56.2, "timeString": "56 sec", "fuel": null, - "sulfur": 440 + "sulfur": 147 }, { "group": "guns", @@ -396679,7 +405239,7 @@ "time": 9.04, "timeString": "9 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "guns", @@ -396727,7 +405287,7 @@ "time": 3.12, "timeString": "3 sec", "fuel": null, - "sulfur": 540 + "sulfur": 180 }, { "group": "guns", @@ -396775,7 +405335,7 @@ "time": 9.025, "timeString": "9 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "guns", @@ -396859,7 +405419,7 @@ "time": 10.18, "timeString": "10 sec", "fuel": null, - "sulfur": 520 + "sulfur": 195 }, { "group": "melee", @@ -396909,6 +405469,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 36, + "quantityTypeId": null, + "time": 21, + "timeString": "21 sec", + "fuel": 36, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 47, + "quantityTypeId": "-1211166256", + "time": 4.6, + "timeString": "4 sec", + "fuel": null, + "sulfur": 157 + }, { "group": "explosive", "which": null, @@ -396955,7 +405539,7 @@ "time": 8.5, "timeString": "8 sec", "fuel": null, - "sulfur": 627 + "sulfur": 235 }, { "group": "melee", @@ -397075,7 +405659,7 @@ "time": 22.65, "timeString": "22 sec", "fuel": null, - "sulfur": 427 + "sulfur": 160 }, { "group": "guns", @@ -397111,7 +405695,7 @@ "time": 27.925, "timeString": "27 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "melee", @@ -397168,8 +405752,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 12, - "timeString": "12 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -397303,7 +405887,7 @@ "time": 17.45, "timeString": "17 sec", "fuel": null, - "sulfur": 587 + "sulfur": 220 }, { "group": "guns", @@ -397363,7 +405947,7 @@ "time": 15.975, "timeString": "15 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "guns", @@ -397372,8 +405956,8 @@ "caption": "Pistol Bullet", "quantity": 59, "quantityTypeId": "785728077", - "time": 13.6, - "timeString": "13 sec", + "time": 9.7, + "timeString": "9 sec", "fuel": null, "sulfur": 148 }, @@ -397396,10 +405980,10 @@ "caption": "HV Pistol Ammo", "quantity": 59, "quantityTypeId": "-1691396643", - "time": 13.6, - "timeString": "13 sec", + "time": 9.7, + "timeString": "9 sec", "fuel": null, - "sulfur": 786 + "sulfur": 295 }, { "group": "guns", @@ -397591,7 +406175,7 @@ "time": 13.72, "timeString": "13 sec", "fuel": null, - "sulfur": 627 + "sulfur": 235 }, { "group": "melee", @@ -397676,8 +406260,8 @@ "quantityTypeId": null, "time": 2.8772247112499, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -397701,7 +406285,7 @@ "time": 46, "timeString": "46 sec", "fuel": null, - "sulfur": 160 + "sulfur": 96 }, { "group": "melee", @@ -397845,7 +406429,7 @@ "time": 8.7989, "timeString": "8 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "explosive", @@ -397905,7 +406489,7 @@ "time": 52.2, "timeString": "52 sec", "fuel": null, - "sulfur": 440 + "sulfur": 147 }, { "group": "melee", @@ -398193,7 +406777,7 @@ "time": 10.4125, "timeString": "10 sec", "fuel": null, - "sulfur": 587 + "sulfur": 220 }, { "group": "guns", @@ -398277,7 +406861,7 @@ "time": 3.75, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "melee", @@ -398349,7 +406933,7 @@ "time": 56.2, "timeString": "56 sec", "fuel": null, - "sulfur": 440 + "sulfur": 147 }, { "group": "guns", @@ -398397,7 +406981,7 @@ "time": 9.04, "timeString": "9 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "guns", @@ -398445,7 +407029,7 @@ "time": 3.12, "timeString": "3 sec", "fuel": null, - "sulfur": 540 + "sulfur": 180 }, { "group": "guns", @@ -398493,7 +407077,7 @@ "time": 9.025, "timeString": "9 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "guns", @@ -398577,7 +407161,7 @@ "time": 10.18, "timeString": "10 sec", "fuel": null, - "sulfur": 520 + "sulfur": 195 }, { "group": "melee", @@ -398627,6 +407211,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 36, + "quantityTypeId": null, + "time": 21, + "timeString": "21 sec", + "fuel": 36, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 47, + "quantityTypeId": "-1211166256", + "time": 4.6, + "timeString": "4 sec", + "fuel": null, + "sulfur": 157 + }, { "group": "explosive", "which": null, @@ -398673,7 +407281,7 @@ "time": 8.5, "timeString": "8 sec", "fuel": null, - "sulfur": 627 + "sulfur": 235 }, { "group": "melee", @@ -398793,7 +407401,7 @@ "time": 22.65, "timeString": "22 sec", "fuel": null, - "sulfur": 427 + "sulfur": 160 }, { "group": "guns", @@ -398829,7 +407437,7 @@ "time": 27.925, "timeString": "27 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "melee", @@ -398886,8 +407494,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 12, - "timeString": "12 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -399021,7 +407629,7 @@ "time": 17.45, "timeString": "17 sec", "fuel": null, - "sulfur": 587 + "sulfur": 220 }, { "group": "guns", @@ -399081,7 +407689,7 @@ "time": 15.975, "timeString": "15 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "guns", @@ -399090,8 +407698,8 @@ "caption": "Pistol Bullet", "quantity": 59, "quantityTypeId": "785728077", - "time": 13.6, - "timeString": "13 sec", + "time": 9.7, + "timeString": "9 sec", "fuel": null, "sulfur": 148 }, @@ -399114,10 +407722,10 @@ "caption": "HV Pistol Ammo", "quantity": 59, "quantityTypeId": "-1691396643", - "time": 13.6, - "timeString": "13 sec", + "time": 9.7, + "timeString": "9 sec", "fuel": null, - "sulfur": 786 + "sulfur": 295 }, { "group": "guns", @@ -399309,7 +407917,7 @@ "time": 13.72, "timeString": "13 sec", "fuel": null, - "sulfur": 627 + "sulfur": 235 }, { "group": "melee", @@ -399394,8 +408002,8 @@ "quantityTypeId": null, "time": 2.8772247112499, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -399419,7 +408027,7 @@ "time": 46, "timeString": "46 sec", "fuel": null, - "sulfur": 160 + "sulfur": 96 }, { "group": "melee", @@ -399563,7 +408171,7 @@ "time": 8.7989, "timeString": "8 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "explosive", @@ -399623,7 +408231,7 @@ "time": 52.2, "timeString": "52 sec", "fuel": null, - "sulfur": 440 + "sulfur": 147 }, { "group": "melee", @@ -399911,7 +408519,7 @@ "time": 10.4125, "timeString": "10 sec", "fuel": null, - "sulfur": 587 + "sulfur": 220 }, { "group": "guns", @@ -399995,7 +408603,7 @@ "time": 3.75, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "melee", @@ -400067,7 +408675,7 @@ "time": 56.2, "timeString": "56 sec", "fuel": null, - "sulfur": 440 + "sulfur": 147 }, { "group": "guns", @@ -400115,7 +408723,7 @@ "time": 9.04, "timeString": "9 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "guns", @@ -400163,7 +408771,7 @@ "time": 3.12, "timeString": "3 sec", "fuel": null, - "sulfur": 540 + "sulfur": 180 }, { "group": "guns", @@ -400211,7 +408819,7 @@ "time": 9.025, "timeString": "9 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "guns", @@ -400295,7 +408903,7 @@ "time": 10.18, "timeString": "10 sec", "fuel": null, - "sulfur": 520 + "sulfur": 195 }, { "group": "melee", @@ -400345,6 +408953,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 36, + "quantityTypeId": null, + "time": 21, + "timeString": "21 sec", + "fuel": 36, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 47, + "quantityTypeId": "-1211166256", + "time": 4.6, + "timeString": "4 sec", + "fuel": null, + "sulfur": 157 + }, { "group": "explosive", "which": null, @@ -400391,7 +409023,7 @@ "time": 8.5, "timeString": "8 sec", "fuel": null, - "sulfur": 627 + "sulfur": 235 }, { "group": "melee", @@ -400511,7 +409143,7 @@ "time": 22.65, "timeString": "22 sec", "fuel": null, - "sulfur": 427 + "sulfur": 160 }, { "group": "guns", @@ -400547,7 +409179,7 @@ "time": 27.925, "timeString": "27 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "melee", @@ -400604,8 +409236,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 12, - "timeString": "12 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -400739,7 +409371,7 @@ "time": 17.45, "timeString": "17 sec", "fuel": null, - "sulfur": 587 + "sulfur": 220 }, { "group": "guns", @@ -400799,7 +409431,7 @@ "time": 15.975, "timeString": "15 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "guns", @@ -400808,8 +409440,8 @@ "caption": "Pistol Bullet", "quantity": 59, "quantityTypeId": "785728077", - "time": 13.6, - "timeString": "13 sec", + "time": 9.7, + "timeString": "9 sec", "fuel": null, "sulfur": 148 }, @@ -400832,10 +409464,10 @@ "caption": "HV Pistol Ammo", "quantity": 59, "quantityTypeId": "-1691396643", - "time": 13.6, - "timeString": "13 sec", + "time": 9.7, + "timeString": "9 sec", "fuel": null, - "sulfur": 786 + "sulfur": 295 }, { "group": "guns", @@ -401027,7 +409659,7 @@ "time": 13.72, "timeString": "13 sec", "fuel": null, - "sulfur": 627 + "sulfur": 235 }, { "group": "melee", @@ -401112,8 +409744,8 @@ "quantityTypeId": null, "time": 2.8772247112499, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -401137,7 +409769,7 @@ "time": 46, "timeString": "46 sec", "fuel": null, - "sulfur": 160 + "sulfur": 96 }, { "group": "melee", @@ -401281,7 +409913,7 @@ "time": 8.7989, "timeString": "8 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "explosive", @@ -401341,7 +409973,7 @@ "time": 52.2, "timeString": "52 sec", "fuel": null, - "sulfur": 440 + "sulfur": 147 }, { "group": "melee", @@ -401629,7 +410261,7 @@ "time": 10.4125, "timeString": "10 sec", "fuel": null, - "sulfur": 587 + "sulfur": 220 }, { "group": "guns", @@ -401713,7 +410345,7 @@ "time": 3.75, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "melee", @@ -401785,7 +410417,7 @@ "time": 56.2, "timeString": "56 sec", "fuel": null, - "sulfur": 440 + "sulfur": 147 }, { "group": "guns", @@ -401833,7 +410465,7 @@ "time": 9.04, "timeString": "9 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "guns", @@ -401881,7 +410513,7 @@ "time": 3.12, "timeString": "3 sec", "fuel": null, - "sulfur": 540 + "sulfur": 180 }, { "group": "guns", @@ -401929,7 +410561,7 @@ "time": 9.025, "timeString": "9 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "guns", @@ -402013,7 +410645,7 @@ "time": 10.18, "timeString": "10 sec", "fuel": null, - "sulfur": 520 + "sulfur": 195 }, { "group": "melee", @@ -402063,6 +410695,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 36, + "quantityTypeId": null, + "time": 21, + "timeString": "21 sec", + "fuel": 36, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 47, + "quantityTypeId": "-1211166256", + "time": 4.6, + "timeString": "4 sec", + "fuel": null, + "sulfur": 157 + }, { "group": "explosive", "which": null, @@ -402109,7 +410765,7 @@ "time": 8.5, "timeString": "8 sec", "fuel": null, - "sulfur": 627 + "sulfur": 235 }, { "group": "melee", @@ -402229,7 +410885,7 @@ "time": 22.65, "timeString": "22 sec", "fuel": null, - "sulfur": 427 + "sulfur": 160 }, { "group": "guns", @@ -402265,7 +410921,7 @@ "time": 27.925, "timeString": "27 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "melee", @@ -402322,8 +410978,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 12, - "timeString": "12 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -402457,7 +411113,7 @@ "time": 17.45, "timeString": "17 sec", "fuel": null, - "sulfur": 587 + "sulfur": 220 }, { "group": "guns", @@ -402517,7 +411173,7 @@ "time": 15.975, "timeString": "15 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "guns", @@ -402526,8 +411182,8 @@ "caption": "Pistol Bullet", "quantity": 59, "quantityTypeId": "785728077", - "time": 13.6, - "timeString": "13 sec", + "time": 9.7, + "timeString": "9 sec", "fuel": null, "sulfur": 148 }, @@ -402550,10 +411206,10 @@ "caption": "HV Pistol Ammo", "quantity": 59, "quantityTypeId": "-1691396643", - "time": 13.6, - "timeString": "13 sec", + "time": 9.7, + "timeString": "9 sec", "fuel": null, - "sulfur": 786 + "sulfur": 295 }, { "group": "guns", @@ -402745,7 +411401,7 @@ "time": 13.72, "timeString": "13 sec", "fuel": null, - "sulfur": 627 + "sulfur": 235 }, { "group": "melee", @@ -402830,8 +411486,8 @@ "quantityTypeId": null, "time": 2.8772247112499, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -402855,7 +411511,7 @@ "time": 46, "timeString": "46 sec", "fuel": null, - "sulfur": 160 + "sulfur": 96 }, { "group": "melee", @@ -402999,7 +411655,7 @@ "time": 8.7989, "timeString": "8 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "explosive", @@ -403059,7 +411715,7 @@ "time": 52.2, "timeString": "52 sec", "fuel": null, - "sulfur": 440 + "sulfur": 147 }, { "group": "melee", @@ -403347,7 +412003,7 @@ "time": 10.4125, "timeString": "10 sec", "fuel": null, - "sulfur": 587 + "sulfur": 220 }, { "group": "guns", @@ -403431,7 +412087,7 @@ "time": 3.75, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "melee", @@ -403503,7 +412159,7 @@ "time": 56.2, "timeString": "56 sec", "fuel": null, - "sulfur": 440 + "sulfur": 147 }, { "group": "guns", @@ -403551,7 +412207,7 @@ "time": 9.04, "timeString": "9 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "guns", @@ -403599,7 +412255,7 @@ "time": 3.12, "timeString": "3 sec", "fuel": null, - "sulfur": 540 + "sulfur": 180 }, { "group": "guns", @@ -403647,7 +412303,7 @@ "time": 9.025, "timeString": "9 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "guns", @@ -403731,7 +412387,7 @@ "time": 10.18, "timeString": "10 sec", "fuel": null, - "sulfur": 520 + "sulfur": 195 }, { "group": "melee", @@ -403781,6 +412437,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 36, + "quantityTypeId": null, + "time": 21, + "timeString": "21 sec", + "fuel": 36, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 47, + "quantityTypeId": "-1211166256", + "time": 4.6, + "timeString": "4 sec", + "fuel": null, + "sulfur": 157 + }, { "group": "explosive", "which": null, @@ -403827,7 +412507,7 @@ "time": 8.5, "timeString": "8 sec", "fuel": null, - "sulfur": 627 + "sulfur": 235 }, { "group": "melee", @@ -403947,7 +412627,7 @@ "time": 22.65, "timeString": "22 sec", "fuel": null, - "sulfur": 427 + "sulfur": 160 }, { "group": "guns", @@ -403983,7 +412663,7 @@ "time": 27.925, "timeString": "27 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "melee", @@ -404040,8 +412720,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 12, - "timeString": "12 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -404175,7 +412855,7 @@ "time": 17.45, "timeString": "17 sec", "fuel": null, - "sulfur": 587 + "sulfur": 220 }, { "group": "guns", @@ -404235,7 +412915,7 @@ "time": 15.975, "timeString": "15 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "guns", @@ -404244,8 +412924,8 @@ "caption": "Pistol Bullet", "quantity": 59, "quantityTypeId": "785728077", - "time": 13.6, - "timeString": "13 sec", + "time": 9.7, + "timeString": "9 sec", "fuel": null, "sulfur": 148 }, @@ -404268,10 +412948,10 @@ "caption": "HV Pistol Ammo", "quantity": 59, "quantityTypeId": "-1691396643", - "time": 13.6, - "timeString": "13 sec", + "time": 9.7, + "timeString": "9 sec", "fuel": null, - "sulfur": 786 + "sulfur": 295 }, { "group": "guns", @@ -404463,7 +413143,7 @@ "time": 13.72, "timeString": "13 sec", "fuel": null, - "sulfur": 627 + "sulfur": 235 }, { "group": "melee", @@ -404548,8 +413228,8 @@ "quantityTypeId": null, "time": 11.743774331632, "timeString": "11 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -404573,7 +413253,7 @@ "time": 598, "timeString": "9 min 58 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 1200 }, { "group": "melee", @@ -405163,6 +413843,18 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 146, + "quantityTypeId": null, + "time": 32, + "timeString": "32 sec", + "fuel": 146, + "sulfur": null + }, { "group": "explosive", "which": null, @@ -405314,8 +414006,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 67, - "timeString": "1 min 7 sec", + "time": 34, + "timeString": "34 sec", "fuel": null, "sulfur": null }, @@ -405434,8 +414126,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 146, "quantityTypeId": "51984655", - "time": 62.9, - "timeString": "1 min 2 sec", + "time": 55.1, + "timeString": "55 sec", "fuel": null, "sulfur": 1216 }, @@ -405626,9 +414318,9 @@ "which": null, "toolId": "349762871", "caption": null, - "quantity": 4, + "quantity": 3, "quantityTypeId": null, - "time": 1.2, + "time": 1, "timeString": "1 sec", "fuel": null, "sulfur": null @@ -405667,17 +414359,17 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", "which": null, "toolId": "-2073432256", "caption": null, - "quantity": 10, + "quantity": 2, "quantityTypeId": null, - "time": 149, - "timeString": "2 min 29 sec", + "time": 24.8, + "timeString": "24 sec", "fuel": null, "sulfur": null }, @@ -405686,10 +414378,10 @@ "which": null, "toolId": "-2073432256", "caption": "Throw", - "quantity": 16, + "quantity": 3, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 100.5, + "timeString": "1 min 40 sec", "fuel": null, "sulfur": null }, @@ -405710,10 +414402,10 @@ "which": null, "toolId": "-196667575", "caption": null, - "quantity": 21, + "quantity": 3, "quantityTypeId": null, - "time": 287, - "timeString": "4 min 47 sec", + "time": 47, + "timeString": "47 sec", "fuel": null, "sulfur": null }, @@ -405722,10 +414414,10 @@ "which": null, "toolId": "1488979457", "caption": null, - "quantity": 4, + "quantity": 1, "quantityTypeId": null, - "time": 43.05, - "timeString": "43 sec", + "time": 6.75, + "timeString": "6 sec", "fuel": null, "sulfur": null }, @@ -405736,8 +414428,8 @@ "caption": "Workbench Refill", "quantity": 1, "quantityTypeId": null, - "time": 49.05, - "timeString": "49 sec", + "time": 6.75, + "timeString": "6 sec", "fuel": null, "sulfur": null }, @@ -405746,10 +414438,10 @@ "which": null, "toolId": "-1536855921", "caption": null, - "quantity": 16, + "quantity": 3, "quantityTypeId": null, - "time": 415, - "timeString": "6 min 55 sec", + "time": 69, + "timeString": "1 min 9 sec", "fuel": null, "sulfur": null }, @@ -405758,10 +414450,10 @@ "which": null, "toolId": "-1536855921", "caption": "Throw", - "quantity": 8, + "quantity": 2, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 51, + "timeString": "51 sec", "fuel": null, "sulfur": null }, @@ -405811,19 +414503,19 @@ "time": 19.0641, "timeString": "19 sec", "fuel": null, - "sulfur": 1600 + "sulfur": 534 }, { "group": "explosive", "which": null, "toolId": "1840822026", "caption": null, - "quantity": 8, + "quantity": 4, "quantityTypeId": null, - "time": 13.35, - "timeString": "13 sec", + "time": 8.55, + "timeString": "8 sec", "fuel": null, - "sulfur": 960 + "sulfur": 480 }, { "group": "guns", @@ -405871,17 +414563,17 @@ "time": 122.9, "timeString": "2 min 2 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "melee", "which": null, "toolId": "1711033574", "caption": null, - "quantity": 14, + "quantity": 2, "quantityTypeId": null, - "time": 246.8, - "timeString": "4 min 6 sec", + "time": 40.2, + "timeString": "40 sec", "fuel": null, "sulfur": null }, @@ -405890,10 +414582,10 @@ "which": null, "toolId": "1711033574", "caption": "Throw", - "quantity": 17, + "quantity": 3, "quantityTypeId": null, - "time": 501, - "timeString": "8 min 21 sec", + "time": 84, + "timeString": "1 min 24 sec", "fuel": null, "sulfur": null }, @@ -405902,10 +414594,10 @@ "which": null, "toolId": "1814288539", "caption": null, - "quantity": 10, + "quantity": 2, "quantityTypeId": null, - "time": 184, - "timeString": "3 min 4 sec", + "time": 30.4, + "timeString": "30 sec", "fuel": null, "sulfur": null }, @@ -405914,10 +414606,10 @@ "which": null, "toolId": "1814288539", "caption": "Throw", - "quantity": 16, + "quantity": 3, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 100.5, + "timeString": "1 min 40 sec", "fuel": null, "sulfur": null }, @@ -405926,10 +414618,10 @@ "which": null, "toolId": "1104520648", "caption": null, - "quantity": 11, + "quantity": 2, "quantityTypeId": null, - "time": 76.8, - "timeString": "1 min 16 sec", + "time": 12.2, + "timeString": "12 sec", "fuel": null, "sulfur": null }, @@ -405938,10 +414630,10 @@ "which": null, "toolId": "-1978999529", "caption": null, - "quantity": 4, + "quantity": 1, "quantityTypeId": null, - "time": 137, - "timeString": "2 min 17 sec", + "time": 24, + "timeString": "24 sec", "fuel": null, "sulfur": null }, @@ -405950,10 +414642,10 @@ "which": null, "toolId": "-1978999529", "caption": "Throw", - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": 201, - "timeString": "3 min 21 sec", + "time": 34.5, + "timeString": "34 sec", "fuel": null, "sulfur": null }, @@ -406058,12 +414750,12 @@ "which": null, "toolId": "143803535", "caption": null, - "quantity": 23, + "quantity": 6, "quantityTypeId": null, - "time": 30.1, - "timeString": "30 sec", + "time": 9.7, + "timeString": "9 sec", "fuel": null, - "sulfur": 1380 + "sulfur": 360 }, { "group": "guns", @@ -406099,7 +414791,7 @@ "time": 25.075, "timeString": "25 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -406118,10 +414810,10 @@ "which": null, "toolId": "-1252059217", "caption": null, - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": 146, - "timeString": "2 min 26 sec", + "time": 24.3, + "timeString": "24 sec", "fuel": null, "sulfur": null }, @@ -406130,10 +414822,10 @@ "which": null, "toolId": "-1252059217", "caption": "Throw", - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": 400.5, - "timeString": "6 min 40 sec", + "time": 67.5, + "timeString": "1 min 7 sec", "fuel": null, "sulfur": null }, @@ -406183,17 +414875,17 @@ "time": 15, "timeString": "15 sec", "fuel": null, - "sulfur": 1400 + "sulfur": 467 }, { "group": "melee", "which": null, "toolId": "2040726127", "caption": null, - "quantity": 9, + "quantity": 2, "quantityTypeId": null, - "time": 88.5, - "timeString": "1 min 28 sec", + "time": 15, + "timeString": "15 sec", "fuel": null, "sulfur": null }, @@ -406202,10 +414894,10 @@ "which": null, "toolId": "2040726127", "caption": "Throw", - "quantity": 4, + "quantity": 1, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 21, + "timeString": "21 sec", "fuel": null, "sulfur": null }, @@ -406255,7 +414947,7 @@ "time": 131, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -406303,7 +414995,7 @@ "time": 23.52, "timeString": "23 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -406351,7 +415043,7 @@ "time": 7.32, "timeString": "7 sec", "fuel": null, - "sulfur": 1240 + "sulfur": 414 }, { "group": "guns", @@ -406399,7 +415091,7 @@ "time": 23.05, "timeString": "23 sec", "fuel": null, - "sulfur": 1600 + "sulfur": 534 }, { "group": "guns", @@ -406483,17 +415175,17 @@ "time": 24.4, "timeString": "24 sec", "fuel": null, - "sulfur": 1186 + "sulfur": 445 }, { "group": "melee", "which": null, "toolId": "-1966748496", "caption": null, - "quantity": 4, + "quantity": 1, "quantityTypeId": null, - "time": 137, - "timeString": "2 min 17 sec", + "time": 24, + "timeString": "24 sec", "fuel": null, "sulfur": null }, @@ -406502,10 +415194,10 @@ "which": null, "toolId": "-1966748496", "caption": "Throw", - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": 201, - "timeString": "3 min 21 sec", + "time": 34.5, + "timeString": "34 sec", "fuel": null, "sulfur": null }, @@ -406514,10 +415206,10 @@ "which": null, "toolId": "-1137865085", "caption": null, - "quantity": 5, + "quantity": 1, "quantityTypeId": null, - "time": 119, - "timeString": "1 min 59 sec", + "time": 20, + "timeString": "20 sec", "fuel": null, "sulfur": null }, @@ -406526,13 +415218,25 @@ "which": null, "toolId": "-1137865085", "caption": "Throw", - "quantity": 4, + "quantity": 1, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 51, + "timeString": "51 sec", "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 107, + "quantityTypeId": "-1211166256", + "time": 10.6, + "timeString": "10 sec", + "fuel": null, + "sulfur": 356 + }, { "group": "guns", "which": null, @@ -406567,17 +415271,17 @@ "time": 22.3, "timeString": "22 sec", "fuel": null, - "sulfur": 1426 + "sulfur": 535 }, { "group": "melee", "which": null, "toolId": "1491189398", "caption": null, - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": 169.5, - "timeString": "2 min 49 sec", + "time": 28.75, + "timeString": "28 sec", "fuel": null, "sulfur": null }, @@ -406586,10 +415290,10 @@ "which": null, "toolId": "-1302129395", "caption": null, - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": 203, - "timeString": "3 min 23 sec", + "time": 34.5, + "timeString": "34 sec", "fuel": null, "sulfur": null }, @@ -406598,10 +415302,10 @@ "which": null, "toolId": "-1302129395", "caption": "Throw", - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 51, + "timeString": "51 sec", "fuel": null, "sulfur": null }, @@ -406687,7 +415391,7 @@ "time": 54, "timeString": "54 sec", "fuel": null, - "sulfur": 973 + "sulfur": 365 }, { "group": "guns", @@ -406723,17 +415427,17 @@ "time": 65.1, "timeString": "1 min 5 sec", "fuel": null, - "sulfur": 1533 + "sulfur": 575 }, { "group": "melee", "which": null, "toolId": "963906841", "caption": null, - "quantity": 12, + "quantity": 2, "quantityTypeId": null, - "time": 531, - "timeString": "8 min 51 sec", + "time": 88.1, + "timeString": "1 min 28 sec", "fuel": null, "sulfur": null }, @@ -406742,10 +415446,10 @@ "which": null, "toolId": "963906841", "caption": "Throw", - "quantity": 16, + "quantity": 3, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 100.5, + "timeString": "1 min 40 sec", "fuel": null, "sulfur": null }, @@ -406754,10 +415458,10 @@ "which": null, "toolId": "-262590403", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 126, - "timeString": "2 min 6 sec", + "time": 21.25, + "timeString": "21 sec", "fuel": null, "sulfur": null }, @@ -406766,10 +415470,10 @@ "which": null, "toolId": "-262590403", "caption": "Throw", - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 40.5, + "timeString": "40 sec", "fuel": null, "sulfur": null }, @@ -406778,10 +415482,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 135, - "timeString": "2 min 15 sec", + "time": 12, + "timeString": "12 sec", "fuel": null, "sulfur": null }, @@ -406790,10 +415494,10 @@ "which": null, "toolId": "-1506397857", "caption": "Throw", - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 51, + "timeString": "51 sec", "fuel": null, "sulfur": null }, @@ -406802,10 +415506,10 @@ "which": null, "toolId": "-1780802565", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 126, - "timeString": "2 min 6 sec", + "time": 21.25, + "timeString": "21 sec", "fuel": null, "sulfur": null }, @@ -406814,10 +415518,10 @@ "which": null, "toolId": "-1780802565", "caption": "Throw", - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": 400.5, - "timeString": "6 min 40 sec", + "time": 67.5, + "timeString": "1 min 7 sec", "fuel": null, "sulfur": null }, @@ -406915,7 +415619,7 @@ "time": 39.6, "timeString": "39 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -406975,7 +415679,7 @@ "time": 42.675, "timeString": "42 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -406984,8 +415688,8 @@ "caption": "Pistol Bullet", "quantity": 134, "quantityTypeId": "785728077", - "time": 32.8, - "timeString": "32 sec", + "time": 28.9, + "timeString": "28 sec", "fuel": null, "sulfur": 335 }, @@ -406996,8 +415700,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 134, "quantityTypeId": "51984655", - "time": 32.8, - "timeString": "32 sec", + "time": 28.9, + "timeString": "28 sec", "fuel": null, "sulfur": 1116 }, @@ -407008,10 +415712,10 @@ "caption": "HV Pistol Ammo", "quantity": 134, "quantityTypeId": "-1691396643", - "time": 32.8, - "timeString": "32 sec", + "time": 28.9, + "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "guns", @@ -407066,10 +415770,10 @@ "which": null, "toolId": "-1583967946", "caption": null, - "quantity": 11, + "quantity": 2, "quantityTypeId": null, - "time": 250.3, - "timeString": "4 min 10 sec", + "time": 41.5, + "timeString": "41 sec", "fuel": null, "sulfur": null }, @@ -407078,10 +415782,10 @@ "which": null, "toolId": "-1583967946", "caption": "Throw", - "quantity": 16, + "quantity": 3, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 100.5, + "timeString": "1 min 40 sec", "fuel": null, "sulfur": null }, @@ -407090,10 +415794,10 @@ "which": null, "toolId": "171931394", "caption": null, - "quantity": 10, + "quantity": 2, "quantityTypeId": null, - "time": 221.4, - "timeString": "3 min 41 sec", + "time": 37, + "timeString": "37 sec", "fuel": null, "sulfur": null }, @@ -407102,10 +415806,10 @@ "which": null, "toolId": "171931394", "caption": "Throw", - "quantity": 16, + "quantity": 3, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 100.5, + "timeString": "1 min 40 sec", "fuel": null, "sulfur": null }, @@ -407114,10 +415818,10 @@ "which": null, "toolId": "1602646136", "caption": null, - "quantity": 11, + "quantity": 2, "quantityTypeId": null, - "time": 182.5, - "timeString": "3 min 2 sec", + "time": 31, + "timeString": "31 sec", "fuel": null, "sulfur": null }, @@ -407126,10 +415830,10 @@ "which": null, "toolId": "-1469578201", "caption": null, - "quantity": 4, + "quantity": 1, "quantityTypeId": null, - "time": 111, - "timeString": "1 min 51 sec", + "time": 18, + "timeString": "18 sec", "fuel": null, "sulfur": null }, @@ -407138,10 +415842,10 @@ "which": null, "toolId": "-1469578201", "caption": "Throw", - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": 201, - "timeString": "3 min 21 sec", + "time": 34.5, + "timeString": "34 sec", "fuel": null, "sulfur": null }, @@ -407150,10 +415854,10 @@ "which": null, "toolId": "1326180354", "caption": null, - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": 102, - "timeString": "1 min 42 sec", + "time": 17.5, + "timeString": "17 sec", "fuel": null, "sulfur": null }, @@ -407162,10 +415866,10 @@ "which": null, "toolId": "1326180354", "caption": "Throw", - "quantity": 3, + "quantity": 1, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 51, + "timeString": "51 sec", "fuel": null, "sulfur": null }, @@ -407203,18 +415907,1760 @@ "time": 33.13, "timeString": "33 sec", "fuel": null, - "sulfur": 1426 + "sulfur": 535 + }, + { + "group": "melee", + "which": null, + "toolId": "795236088", + "caption": null, + "quantity": 5, + "quantityTypeId": null, + "time": 178.2, + "timeString": "2 min 58 sec", + "fuel": 5, + "sulfur": null }, { "group": "melee", "which": null, "toolId": "795236088", + "caption": "Lit", + "quantity": 20, + "quantityTypeId": null, + "time": 193.2, + "timeString": "3 min 13 sec", + "fuel": 20, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1540934679", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 41.5, + "timeString": "41 sec", + "fuel": null, + "sulfur": null + } + ], + "-948291630": [ + { + "group": "explosive", + "which": null, + "toolId": "-1843426638", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 0, + "timeString": "0 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "349762871", + "caption": null, + "quantity": 4, + "quantityTypeId": null, + "time": 1.2, + "timeString": "1 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "-742865266", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 1, + "timeString": "1 sec", + "fuel": 30, + "sulfur": 1400 + }, + { + "group": "explosive", + "which": null, + "toolId": "1638322904", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 3.2882568128571, + "timeString": "3 sec", + "fuel": 75, + "sulfur": 300 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1841918730", + "caption": null, + "quantity": 5, + "quantityTypeId": null, + "time": 24, + "timeString": "24 sec", + "fuel": null, + "sulfur": 1000 + }, + { + "group": "torpedo", + "which": null, + "toolId": "-1671551935", + "caption": null, + "quantity": 10, + "quantityTypeId": null, + "time": 58, + "timeString": "58 sec", + "fuel": null, + "sulfur": 120 + }, + { + "group": "melee", + "which": null, + "toolId": "-2073432256", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 14, + "timeString": "14 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-2073432256", + "caption": "Throw", + "quantity": 2, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "1248356124", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 10, + "timeString": "10 sec", + "fuel": 60, + "sulfur": 2200 + }, + { + "group": "melee", + "which": null, + "toolId": "-196667575", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 28, + "timeString": "28 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1488979457", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 4.05, + "timeString": "4 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1488979457", + "caption": "Workbench Refill", + "quantity": 1, + "quantityTypeId": null, + "time": 4.05, + "timeString": "4 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1536855921", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 41, + "timeString": "41 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1536855921", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 30, + "timeString": "30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "-1211166256", + "time": 9.4654, + "timeString": "9 sec", + "fuel": null, + "sulfur": 133 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 20, + "quantityTypeId": "-1321651331", + "time": 2.5327, + "timeString": "2 sec", + "fuel": null, + "sulfur": 500 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 25, + "quantityTypeId": "605467368", + "time": 3.1992, + "timeString": "3 sec", + "fuel": null, + "sulfur": 313 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "1712070256", + "time": 9.4654, + "timeString": "9 sec", + "fuel": null, + "sulfur": 267 + }, + { + "group": "explosive", + "which": null, + "toolId": "1840822026", "caption": null, + "quantity": 4, + "quantityTypeId": null, + "time": 8.55, + "timeString": "8 sec", + "fuel": null, + "sulfur": 480 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "5.56 Rifle Ammo", + "quantity": 25, + "quantityTypeId": "-1211166256", + "time": null, + "timeString": null, + "fuel": null, + "sulfur": 83 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 16, + "quantityTypeId": "-1321651331", + "time": 35.4, + "timeString": "35 sec", + "fuel": null, + "sulfur": 400 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 16, + "quantityTypeId": "605467368", + "time": 35.4, + "timeString": "35 sec", + "fuel": null, + "sulfur": 200 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 25, + "quantityTypeId": "1712070256", + "time": null, + "timeString": null, + "fuel": null, + "sulfur": 167 + }, + { + "group": "melee", + "which": null, + "toolId": "1711033574", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 23.8, + "timeString": "23 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1711033574", + "caption": "Throw", + "quantity": 2, + "quantityTypeId": null, + "time": 51, + "timeString": "51 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1814288539", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 17.5, + "timeString": "17 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1814288539", + "caption": "Throw", + "quantity": 2, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "14241751", + "caption": "Hunting Bow", + "quantity": 5, + "quantityTypeId": null, + "time": 16.5, + "timeString": "16 sec", + "fuel": 25, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Fire Arrow", + "quantity": 5, + "quantityTypeId": "14241751", + "time": 16.5, + "timeString": "16 sec", + "fuel": 25, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1104520648", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 6.8, + "timeString": "6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1978999529", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 14, + "timeString": "14 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1978999529", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 21, + "timeString": "21 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Fire Arrow", + "quantity": 5, + "quantityTypeId": "14241751", + "time": 31.5, + "timeString": "31 sec", + "fuel": 25, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Fire Arrow", + "quantity": 5, + "quantityTypeId": "14241751", + "time": 26.9, + "timeString": "26 sec", + "fuel": 25, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "Handmade Shell", + "quantity": 12, + "quantityTypeId": "588596902", + "time": 30.5, + "timeString": "30 sec", + "fuel": null, + "sulfur": 60 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Buckshot", + "quantity": 10, + "quantityTypeId": "-1685290200", + "time": 24.5, + "timeString": "24 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Incendiary Shell", + "quantity": 2, + "quantityTypeId": "-1036635990", + "time": 13, + "timeString": "13 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Slug", + "quantity": 25, + "quantityTypeId": "-727717969", + "time": 72, + "timeString": "1 min 12 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "Handmade Shell", + "quantity": 12, + "quantityTypeId": "588596902", + "time": 30.16, + "timeString": "30 sec", + "fuel": null, + "sulfur": 60 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Buckshot", + "quantity": 10, + "quantityTypeId": "-1685290200", + "time": 24.8, + "timeString": "24 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Incendiary Shell", + "quantity": 2, + "quantityTypeId": "-1036635990", + "time": 15.86, + "timeString": "15 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Slug", + "quantity": 25, + "quantityTypeId": "-727717969", + "time": 65, + "timeString": "1 min 5 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "explosive", + "which": null, + "toolId": "143803535", + "caption": null, + "quantity": 4, + "quantityTypeId": null, + "time": 7.3, + "timeString": "7 sec", + "fuel": null, + "sulfur": 240 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1215753368", + "caption": null, + "quantity": 33, + "quantityTypeId": null, + "time": 20.7, + "timeString": "20 sec", + "fuel": 33, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "Pistol Bullet", + "quantity": 50, + "quantityTypeId": "785728077", + "time": 11.0875, + "timeString": "11 sec", + "fuel": null, + "sulfur": 125 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "Incendiary Pistol Bullet", + "quantity": 21, + "quantityTypeId": "51984655", + "time": 30.0375, + "timeString": "30 sec", + "fuel": null, + "sulfur": 175 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "HV Pistol Ammo", + "quantity": 50, + "quantityTypeId": "-1691396643", + "time": 11.0875, + "timeString": "11 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "guns", + "which": null, + "toolId": "-1123473824", + "caption": "40mm Shotgun Round", + "quantity": 8, + "quantityTypeId": "1055319033", + "time": 8.4, + "timeString": "8 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1252059217", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 14.4, + "timeString": "14 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1252059217", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 40.5, + "timeString": "40 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "5.56 Rifle Ammo", + "quantity": 35, + "quantityTypeId": "-1211166256", + "time": 4.25, + "timeString": "4 sec", + "fuel": null, + "sulfur": 117 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 19, + "quantityTypeId": "-1321651331", + "time": 2.25, + "timeString": "2 sec", + "fuel": null, + "sulfur": 475 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 22, + "quantityTypeId": "605467368", + "time": 2.625, + "timeString": "2 sec", + "fuel": null, + "sulfur": 275 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 35, + "quantityTypeId": "1712070256", + "time": 4.25, + "timeString": "4 sec", + "fuel": null, + "sulfur": 233 + }, + { + "group": "melee", + "which": null, + "toolId": "2040726127", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 8.4, + "timeString": "8 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "2040726127", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 12, + "timeString": "12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "5.56 Rifle Ammo", + "quantity": 25, + "quantityTypeId": "-1211166256", + "time": 64, + "timeString": "1 min 4 sec", + "fuel": null, + "sulfur": 83 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 16, + "quantityTypeId": "-1321651331", + "time": 40.2, + "timeString": "40 sec", + "fuel": null, + "sulfur": 400 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 16, + "quantityTypeId": "605467368", + "time": 40.2, + "timeString": "40 sec", + "fuel": null, + "sulfur": 200 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 25, + "quantityTypeId": "1712070256", + "time": 64, + "timeString": "1 min 4 sec", + "fuel": null, + "sulfur": 167 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "5.56 Rifle Ammo", + "quantity": 50, + "quantityTypeId": "-1211166256", + "time": 9.76, + "timeString": "9 sec", + "fuel": null, + "sulfur": 167 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 23, + "quantityTypeId": "-1321651331", + "time": 2.64, + "timeString": "2 sec", + "fuel": null, + "sulfur": 575 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 32, + "quantityTypeId": "605467368", + "time": 7.6, + "timeString": "7 sec", + "fuel": null, + "sulfur": 400 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 50, + "quantityTypeId": "1712070256", + "time": 9.76, + "timeString": "9 sec", + "fuel": null, + "sulfur": 334 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "5.56 Rifle Ammo", + "quantity": 31, + "quantityTypeId": "-1211166256", + "time": 3.6, + "timeString": "3 sec", + "fuel": null, + "sulfur": 103 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 18, + "quantityTypeId": "-1321651331", + "time": 2.04, + "timeString": "2 sec", + "fuel": null, + "sulfur": 450 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 20, + "quantityTypeId": "605467368", + "time": 2.28, + "timeString": "2 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "HV 5.56 Rifle Ammo", "quantity": 31, + "quantityTypeId": "1712070256", + "time": 3.6, + "timeString": "3 sec", + "fuel": null, + "sulfur": 207 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "-1211166256", + "time": 9.9, + "timeString": "9 sec", + "fuel": null, + "sulfur": 133 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 20, + "quantityTypeId": "-1321651331", + "time": 3.325, + "timeString": "3 sec", + "fuel": null, + "sulfur": 500 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 25, + "quantityTypeId": "605467368", + "time": 7.275, + "timeString": "7 sec", + "fuel": null, + "sulfur": 313 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "1712070256", + "time": 9.9, + "timeString": "9 sec", + "fuel": null, + "sulfur": 267 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "Handmade Shell", + "quantity": 14, + "quantityTypeId": "588596902", + "time": 14.9, + "timeString": "14 sec", + "fuel": null, + "sulfur": 70 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Buckshot", + "quantity": 12, + "quantityTypeId": "-1685290200", + "time": 8.8, + "timeString": "8 sec", + "fuel": null, + "sulfur": 120 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Incendiary Shell", + "quantity": 2, + "quantityTypeId": "-1036635990", + "time": 12.8, + "timeString": "12 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Slug", + "quantity": 32, + "quantityTypeId": "-727717969", + "time": 36.8, + "timeString": "36 sec", + "fuel": null, + "sulfur": 320 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "Pistol Bullet", + "quantity": 45, + "quantityTypeId": "785728077", + "time": 11.08, + "timeString": "11 sec", + "fuel": null, + "sulfur": 113 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "Incendiary Pistol Bullet", + "quantity": 20, + "quantityTypeId": "51984655", + "time": 30.09, + "timeString": "30 sec", + "fuel": null, + "sulfur": 167 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "HV Pistol Ammo", + "quantity": 45, + "quantityTypeId": "-1691396643", + "time": 11.08, + "timeString": "11 sec", + "fuel": null, + "sulfur": 225 + }, + { + "group": "melee", + "which": null, + "toolId": "-1966748496", + "caption": null, + "quantity": 1, "quantityTypeId": null, - "time": 1070, - "timeString": "17 min 50 sec", - "fuel": 31, + "time": 14, + "timeString": "14 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1966748496", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 21, + "timeString": "21 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1137865085", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 12, + "timeString": "12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1137865085", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 30, + "timeString": "30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, + { + "group": "explosive", + "which": null, + "toolId": "1556365900", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 50, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "Pistol Bullet", + "quantity": 54, + "quantityTypeId": "785728077", + "time": 9.2, + "timeString": "9 sec", + "fuel": null, + "sulfur": 135 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "Incendiary Pistol Bullet", + "quantity": 22, + "quantityTypeId": "51984655", + "time": 27.1, + "timeString": "27 sec", + "fuel": null, + "sulfur": 183 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "HV Pistol Ammo", + "quantity": 54, + "quantityTypeId": "-1691396643", + "time": 9.2, + "timeString": "9 sec", + "fuel": null, + "sulfur": 270 + }, + { + "group": "melee", + "which": null, + "toolId": "1491189398", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 17.5, + "timeString": "17 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1302129395", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 21, + "timeString": "21 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1302129395", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 30, + "timeString": "30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "Handmade Shell", + "quantity": 12, + "quantityTypeId": "588596902", + "time": 49.5, + "timeString": "49 sec", + "fuel": null, + "sulfur": 60 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Buckshot", + "quantity": 10, + "quantityTypeId": "-1685290200", + "time": 40.5, + "timeString": "40 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Incendiary Shell", + "quantity": 2, + "quantityTypeId": "-1036635990", + "time": 17, + "timeString": "17 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Slug", + "quantity": 25, + "quantityTypeId": "-727717969", + "time": 108, + "timeString": "1 min 48 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "Pistol Bullet", + "quantity": 37, + "quantityTypeId": "785728077", + "time": 27, + "timeString": "27 sec", + "fuel": null, + "sulfur": 93 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "Incendiary Pistol Bullet", + "quantity": 17, + "quantityTypeId": "51984655", + "time": 34.6, + "timeString": "34 sec", + "fuel": null, + "sulfur": 142 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "HV Pistol Ammo", + "quantity": 37, + "quantityTypeId": "-1691396643", + "time": 27, + "timeString": "27 sec", + "fuel": null, + "sulfur": 185 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "Pistol Bullet", + "quantity": 58, + "quantityTypeId": "785728077", + "time": 32.55, + "timeString": "32 sec", + "fuel": null, + "sulfur": 145 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "Incendiary Pistol Bullet", + "quantity": 23, + "quantityTypeId": "51984655", + "time": 35.3, + "timeString": "35 sec", + "fuel": null, + "sulfur": 192 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "HV Pistol Ammo", + "quantity": 58, + "quantityTypeId": "-1691396643", + "time": 32.55, + "timeString": "32 sec", + "fuel": null, + "sulfur": 290 + }, + { + "group": "melee", + "which": null, + "toolId": "963906841", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 52, + "timeString": "52 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "963906841", + "caption": "Throw", + "quantity": 2, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-262590403", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 12.5, + "timeString": "12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-262590403", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 24, + "timeString": "24 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1506397857", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 7, + "timeString": "7 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1506397857", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 30, + "timeString": "30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1780802565", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 12.5, + "timeString": "12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1780802565", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 40.5, + "timeString": "40 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "-1878475007", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 9, + "timeString": "9 sec", + "fuel": null, + "sulfur": 480 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "Handmade Shell", + "quantity": 12, + "quantityTypeId": "588596902", + "time": 16.5, + "timeString": "16 sec", + "fuel": null, + "sulfur": 60 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Buckshot", + "quantity": 10, + "quantityTypeId": "-1685290200", + "time": 14.3, + "timeString": "14 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Incendiary Shell", + "quantity": 2, + "quantityTypeId": "-1036635990", + "time": 13.6, + "timeString": "13 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Slug", + "quantity": 25, + "quantityTypeId": "-727717969", + "time": 44, + "timeString": "44 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "Pistol Bullet", + "quantity": 50, + "quantityTypeId": "785728077", + "time": 18.35, + "timeString": "18 sec", + "fuel": null, + "sulfur": 125 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "Incendiary Pistol Bullet", + "quantity": 21, + "quantityTypeId": "51984655", + "time": 33.5, + "timeString": "33 sec", + "fuel": null, + "sulfur": 175 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "HV Pistol Ammo", + "quantity": 50, + "quantityTypeId": "-1691396643", + "time": 18.35, + "timeString": "18 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "5.56 Rifle Ammo", + "quantity": 50, + "quantityTypeId": "-1211166256", + "time": 21.25, + "timeString": "21 sec", + "fuel": null, + "sulfur": 167 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1321651331", + "caption": "Semi-Automatic Rifle", + "quantity": 23, + "quantityTypeId": null, + "time": 8.075, + "timeString": "8 sec", + "fuel": null, + "sulfur": 575 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 23, + "quantityTypeId": "-1321651331", + "time": 8.075, + "timeString": "8 sec", + "fuel": null, + "sulfur": 575 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 32, + "quantityTypeId": "605467368", + "time": 9.65, + "timeString": "9 sec", + "fuel": null, + "sulfur": 400 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 50, + "quantityTypeId": "1712070256", + "time": 21.25, + "timeString": "21 sec", + "fuel": null, + "sulfur": 334 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "Pistol Bullet", + "quantity": 67, + "quantityTypeId": "785728077", + "time": 14.4, + "timeString": "14 sec", + "fuel": null, + "sulfur": 168 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "Incendiary Pistol Bullet", + "quantity": 26, + "quantityTypeId": "51984655", + "time": 27.5, + "timeString": "27 sec", + "fuel": null, + "sulfur": 217 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "HV Pistol Ammo", + "quantity": 67, + "quantityTypeId": "-1691396643", + "time": 14.4, + "timeString": "14 sec", + "fuel": null, + "sulfur": 335 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "Handmade Shell", + "quantity": 15, + "quantityTypeId": "588596902", + "time": 14.6, + "timeString": "14 sec", + "fuel": null, + "sulfur": 75 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Buckshot", + "quantity": 13, + "quantityTypeId": "-1685290200", + "time": 14.1, + "timeString": "14 sec", + "fuel": null, + "sulfur": 130 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Incendiary Shell", + "quantity": 2, + "quantityTypeId": "-1036635990", + "time": 12.75, + "timeString": "12 sec", + "fuel": null, + "sulfur": 40 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Slug", + "quantity": 34, + "quantityTypeId": "-727717969", + "time": 36, + "timeString": "36 sec", + "fuel": null, + "sulfur": 340 + }, + { + "group": "melee", + "which": null, + "toolId": "-1583967946", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 24.3, + "timeString": "24 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1583967946", + "caption": "Throw", + "quantity": 2, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "171931394", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 21.6, + "timeString": "21 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "171931394", + "caption": "Throw", + "quantity": 2, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1602646136", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 18, + "timeString": "18 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1469578201", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 12, + "timeString": "12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1469578201", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 21, + "timeString": "21 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1326180354", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 10, + "timeString": "10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1326180354", + "caption": "Throw", + "quantity": 1, + "quantityTypeId": null, + "time": 30, + "timeString": "30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "Pistol Bullet", + "quantity": 54, + "quantityTypeId": "785728077", + "time": 14.63, + "timeString": "14 sec", + "fuel": null, + "sulfur": 135 + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "Incendiary Pistol Bullet", + "quantity": 22, + "quantityTypeId": "51984655", + "time": 31.6, + "timeString": "31 sec", + "fuel": null, + "sulfur": 183 + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "HV Pistol Ammo", + "quantity": 54, + "quantityTypeId": "-1691396643", + "time": 14.63, + "timeString": "14 sec", + "fuel": null, + "sulfur": 270 + }, + { + "group": "melee", + "which": null, + "toolId": "795236088", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 106, + "timeString": "1 min 46 sec", + "fuel": 3, "sulfur": null }, { @@ -407222,11 +417668,11 @@ "which": null, "toolId": "795236088", "caption": "Lit", - "quantity": 115, + "quantity": 10, "quantityTypeId": null, - "time": 1154, - "timeString": "19 min 14 sec", - "fuel": 115, + "time": 96.1, + "timeString": "1 min 36 sec", + "fuel": 10, "sulfur": null }, { @@ -407234,10 +417680,10 @@ "which": null, "toolId": "1540934679", "caption": null, - "quantity": 9, + "quantity": 1, "quantityTypeId": null, - "time": 248, - "timeString": "4 min 8 sec", + "time": 24, + "timeString": "24 sec", "fuel": null, "sulfur": null } @@ -407301,7 +417747,7 @@ "time": 190, "timeString": "3 min 10 sec", "fuel": null, - "sulfur": 640 + "sulfur": 384 }, { "group": "explosive", @@ -407548,10 +417994,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 24, + "quantity": 23, "quantityTypeId": null, - "time": 1690, - "timeString": "28 min 10 sec", + "time": 1272, + "timeString": "21 min 12 sec", "fuel": null, "sulfur": null }, @@ -407698,8 +418144,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -407723,7 +418169,7 @@ "time": 130, "timeString": "2 min 10 sec", "fuel": null, - "sulfur": 440 + "sulfur": 264 }, { "group": "melee", @@ -407867,7 +418313,7 @@ "time": 108.6538, "timeString": "1 min 48 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "explosive", @@ -407927,7 +418373,7 @@ "time": 627.9, "timeString": "10 min 27 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "melee", @@ -408215,7 +418661,7 @@ "time": 131.4, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -408299,7 +418745,7 @@ "time": 75.25, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 6960 + "sulfur": 2321 }, { "group": "melee", @@ -408371,7 +418817,7 @@ "time": 667, "timeString": "11 min 7 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -408419,7 +418865,7 @@ "time": 121.96, "timeString": "2 min 1 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -408467,7 +418913,7 @@ "time": 58.98, "timeString": "58 sec", "fuel": null, - "sulfur": 6160 + "sulfur": 2054 }, { "group": "guns", @@ -408515,7 +418961,7 @@ "time": 128.25, "timeString": "2 min 8 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "guns", @@ -408599,7 +419045,7 @@ "time": 131.56, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -408649,6 +419095,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 534, + "quantityTypeId": "-1211166256", + "time": 56.7, + "timeString": "56 sec", + "fuel": null, + "sulfur": 1778 + }, { "group": "explosive", "which": null, @@ -408695,7 +419165,7 @@ "time": 119.6, "timeString": "1 min 59 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -408815,7 +419285,7 @@ "time": 270.45, "timeString": "4 min 30 sec", "fuel": null, - "sulfur": 4852 + "sulfur": 1820 }, { "group": "guns", @@ -408851,7 +419321,7 @@ "time": 328.9, "timeString": "5 min 28 sec", "fuel": null, - "sulfur": 7625 + "sulfur": 2860 }, { "group": "melee", @@ -408906,10 +419376,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 47, + "quantity": 45, "quantityTypeId": null, - "time": 3380, - "timeString": "56 min 20 sec", + "time": 2544, + "timeString": "42 min 24 sec", "fuel": null, "sulfur": null }, @@ -409043,7 +419513,7 @@ "time": 209.6, "timeString": "3 min 29 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -409103,7 +419573,7 @@ "time": 218.3, "timeString": "3 min 38 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -409112,8 +419582,8 @@ "caption": "Pistol Bullet", "quantity": 667, "quantityTypeId": "785728077", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, "sulfur": 1668 }, @@ -409124,8 +419594,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 184, "quantityTypeId": "51984655", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 66.7, + "timeString": "1 min 6 sec", "fuel": null, "sulfur": 1533 }, @@ -409136,10 +419606,10 @@ "caption": "HV Pistol Ammo", "quantity": 667, "quantityTypeId": "-1691396643", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, - "sulfur": 8891 + "sulfur": 3335 }, { "group": "guns", @@ -409331,7 +419801,7 @@ "time": 169.91, "timeString": "2 min 49 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -409416,8 +419886,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -409441,7 +419911,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -409585,7 +420055,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -409645,7 +420115,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -409933,7 +420403,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -410017,7 +420487,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -410089,7 +420559,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -410137,7 +420607,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -410185,7 +420655,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -410233,7 +420703,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -410317,7 +420787,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -410367,6 +420837,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -410413,7 +420907,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -410533,7 +421027,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -410569,7 +421063,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -410626,8 +421120,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -410761,7 +421255,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -410821,7 +421315,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -410842,8 +421336,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -410857,7 +421351,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -411049,7 +421543,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -411134,8 +421628,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -411159,7 +421653,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -411303,7 +421797,7 @@ "time": 3.8657, "timeString": "3 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "explosive", @@ -411363,7 +421857,7 @@ "time": 43.8, "timeString": "43 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "melee", @@ -411651,7 +422145,7 @@ "time": 9.7375, "timeString": "9 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -411735,7 +422229,7 @@ "time": 3.25, "timeString": "3 sec", "fuel": null, - "sulfur": 540 + "sulfur": 180 }, { "group": "melee", @@ -411807,7 +422301,7 @@ "time": 48, "timeString": "48 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "guns", @@ -411855,7 +422349,7 @@ "time": 8.32, "timeString": "8 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -411903,7 +422397,7 @@ "time": 2.76, "timeString": "2 sec", "fuel": null, - "sulfur": 480 + "sulfur": 160 }, { "group": "guns", @@ -411951,7 +422445,7 @@ "time": 8.15, "timeString": "8 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "guns", @@ -412035,7 +422529,7 @@ "time": 9.43, "timeString": "9 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "melee", @@ -412085,6 +422579,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "-1211166256", + "time": 3.9, + "timeString": "3 sec", + "fuel": null, + "sulfur": 133 + }, { "group": "explosive", "which": null, @@ -412131,7 +422649,7 @@ "time": 7.8, "timeString": "7 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -412251,7 +422769,7 @@ "time": 18.45, "timeString": "18 sec", "fuel": null, - "sulfur": 373 + "sulfur": 140 }, { "group": "guns", @@ -412287,7 +422805,7 @@ "time": 23.475, "timeString": "23 sec", "fuel": null, - "sulfur": 573 + "sulfur": 215 }, { "group": "melee", @@ -412344,8 +422862,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 10, - "timeString": "10 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -412479,7 +422997,7 @@ "time": 13.8, "timeString": "13 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -412539,7 +423057,7 @@ "time": 14.925, "timeString": "14 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -412548,8 +423066,8 @@ "caption": "Pistol Bullet", "quantity": 50, "quantityTypeId": "785728077", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, "sulfur": 125 }, @@ -412572,10 +423090,10 @@ "caption": "HV Pistol Ammo", "quantity": 50, "quantityTypeId": "-1691396643", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -412767,7 +423285,7 @@ "time": 8.94, "timeString": "8 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -412852,8 +423370,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -412877,7 +423395,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -413021,7 +423539,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -413081,7 +423599,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -413369,7 +423887,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -413453,7 +423971,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -413525,7 +424043,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -413573,7 +424091,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -413621,7 +424139,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -413669,7 +424187,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -413753,7 +424271,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -413803,6 +424321,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -413849,7 +424391,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -413969,7 +424511,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -414005,7 +424547,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -414062,8 +424604,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -414197,7 +424739,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -414257,7 +424799,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -414278,8 +424820,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -414293,7 +424835,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -414485,7 +425027,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -414570,8 +425112,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -414595,7 +425137,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -414739,7 +425281,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -414799,7 +425341,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -415087,7 +425629,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -415171,7 +425713,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -415243,7 +425785,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -415291,7 +425833,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -415339,7 +425881,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -415387,7 +425929,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -415471,7 +426013,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -415521,6 +426063,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -415567,7 +426133,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -415687,7 +426253,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -415723,7 +426289,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -415780,8 +426346,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -415915,7 +426481,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -415975,7 +426541,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -415996,8 +426562,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -416011,7 +426577,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -416203,7 +426769,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -416301,7 +426867,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -416421,7 +426987,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -416481,7 +427047,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -416685,7 +427251,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -416769,7 +427335,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -416841,7 +427407,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -416889,7 +427455,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -416937,7 +427503,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -416985,7 +427551,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -417069,7 +427635,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -417095,6 +427661,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "guns", "which": null, @@ -417129,7 +427707,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -417237,7 +427815,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -417273,7 +427851,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -417417,7 +427995,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -417477,7 +428055,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -417513,7 +428091,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -417705,7 +428283,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -417766,8 +428344,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -417791,7 +428369,7 @@ "time": 34, "timeString": "34 sec", "fuel": null, - "sulfur": 120 + "sulfur": 72 }, { "group": "melee", @@ -417935,7 +428513,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -417995,7 +428573,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -418283,7 +428861,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -418367,7 +428945,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -418439,7 +429017,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -418487,7 +429065,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -418535,7 +429113,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -418583,7 +429161,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -418667,7 +429245,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -418717,6 +429295,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 8, + "quantityTypeId": null, + "time": 18.2, + "timeString": "18 sec", + "fuel": 8, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -418763,7 +429365,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -418883,7 +429485,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -418919,7 +429521,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -418976,8 +429578,8 @@ "caption": null, "quantity": 2, "quantityTypeId": null, - "time": 126, - "timeString": "2 min 6 sec", + "time": 64, + "timeString": "1 min 4 sec", "fuel": null, "sulfur": null }, @@ -419111,7 +429713,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -419171,7 +429773,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -419180,8 +429782,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -419204,10 +429806,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -419399,7 +430001,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -419484,8 +430086,8 @@ "quantityTypeId": null, "time": 24.661926096428, "timeString": "24 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -419509,7 +430111,7 @@ "time": 412, "timeString": "6 min 52 sec", "fuel": null, - "sulfur": 1380 + "sulfur": 828 }, { "group": "melee", @@ -419653,7 +430255,7 @@ "time": 78.257, "timeString": "1 min 18 sec", "fuel": null, - "sulfur": 6000 + "sulfur": 2001 }, { "group": "explosive", @@ -419713,7 +430315,7 @@ "time": 469.7, "timeString": "7 min 49 sec", "fuel": null, - "sulfur": 3760 + "sulfur": 1254 }, { "group": "melee", @@ -420001,7 +430603,7 @@ "time": 97.825, "timeString": "1 min 37 sec", "fuel": null, - "sulfur": 4999 + "sulfur": 1875 }, { "group": "guns", @@ -420085,7 +430687,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 5220 + "sulfur": 1741 }, { "group": "melee", @@ -420157,7 +430759,7 @@ "time": 501, "timeString": "8 min 21 sec", "fuel": null, - "sulfur": 3760 + "sulfur": 1254 }, { "group": "guns", @@ -420205,7 +430807,7 @@ "time": 91.44, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 7500 + "sulfur": 2501 }, { "group": "guns", @@ -420253,7 +430855,7 @@ "time": 42.36, "timeString": "42 sec", "fuel": null, - "sulfur": 4620 + "sulfur": 1541 }, { "group": "guns", @@ -420301,7 +430903,7 @@ "time": 95.375, "timeString": "1 min 35 sec", "fuel": null, - "sulfur": 6000 + "sulfur": 2001 }, { "group": "guns", @@ -420385,7 +430987,7 @@ "time": 99.23, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "melee", @@ -420435,6 +431037,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 306, + "quantityTypeId": null, + "time": 54.8, + "timeString": "54 sec", + "fuel": 306, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 400, + "quantityTypeId": "-1211166256", + "time": 43.3, + "timeString": "43 sec", + "fuel": null, + "sulfur": 1332 + }, { "group": "explosive", "which": null, @@ -420481,7 +431107,7 @@ "time": 90.6, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 5332 + "sulfur": 2000 }, { "group": "melee", @@ -420601,7 +431227,7 @@ "time": 202.8, "timeString": "3 min 22 sec", "fuel": null, - "sulfur": 3639 + "sulfur": 1365 }, { "group": "guns", @@ -420637,7 +431263,7 @@ "time": 245.825, "timeString": "4 min 5 sec", "fuel": null, - "sulfur": 5719 + "sulfur": 2145 }, { "group": "melee", @@ -420694,8 +431320,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 100, - "timeString": "1 min 40 sec", + "time": 50, + "timeString": "50 sec", "fuel": null, "sulfur": null }, @@ -420829,7 +431455,7 @@ "time": 157.85, "timeString": "2 min 37 sec", "fuel": null, - "sulfur": 4999 + "sulfur": 1875 }, { "group": "guns", @@ -420889,7 +431515,7 @@ "time": 162.625, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 7500 + "sulfur": 2501 }, { "group": "guns", @@ -420898,8 +431524,8 @@ "caption": "Pistol Bullet", "quantity": 500, "quantityTypeId": "785728077", - "time": 127.9, - "timeString": "2 min 7 sec", + "time": 112.3, + "timeString": "1 min 52 sec", "fuel": null, "sulfur": 1250 }, @@ -420910,8 +431536,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 190, "quantityTypeId": "51984655", - "time": 71.2, - "timeString": "1 min 11 sec", + "time": 67.3, + "timeString": "1 min 7 sec", "fuel": null, "sulfur": 1583 }, @@ -420922,10 +431548,10 @@ "caption": "HV Pistol Ammo", "quantity": 500, "quantityTypeId": "-1691396643", - "time": 127.9, - "timeString": "2 min 7 sec", + "time": 112.3, + "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -421117,7 +431743,7 @@ "time": 125.4, "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 5332 + "sulfur": 2000 }, { "group": "melee", @@ -421202,8 +431828,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -421227,7 +431853,7 @@ "time": 100, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 340 + "sulfur": 204 }, { "group": "melee", @@ -421371,7 +431997,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -421431,7 +432057,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -421719,7 +432345,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -421803,7 +432429,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -421875,7 +432501,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -421923,7 +432549,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -421971,7 +432597,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -422019,7 +432645,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -422103,7 +432729,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -422153,6 +432779,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -422199,7 +432849,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -422319,7 +432969,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -422355,7 +433005,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -422410,10 +433060,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -422547,7 +433197,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -422607,7 +433257,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -422616,8 +433266,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -422628,8 +433278,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 127, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 53.2, + "timeString": "53 sec", "fuel": null, "sulfur": 1058 }, @@ -422640,10 +433290,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -422835,7 +433485,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -422920,8 +433570,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -422945,7 +433595,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -423089,7 +433739,7 @@ "time": 3.8657, "timeString": "3 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "explosive", @@ -423149,7 +433799,7 @@ "time": 43.8, "timeString": "43 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "melee", @@ -423437,7 +434087,7 @@ "time": 9.7375, "timeString": "9 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -423521,7 +434171,7 @@ "time": 3.25, "timeString": "3 sec", "fuel": null, - "sulfur": 540 + "sulfur": 180 }, { "group": "melee", @@ -423593,7 +434243,7 @@ "time": 48, "timeString": "48 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "guns", @@ -423641,7 +434291,7 @@ "time": 8.32, "timeString": "8 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -423689,7 +434339,7 @@ "time": 2.76, "timeString": "2 sec", "fuel": null, - "sulfur": 480 + "sulfur": 160 }, { "group": "guns", @@ -423737,7 +434387,7 @@ "time": 8.15, "timeString": "8 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "guns", @@ -423821,7 +434471,7 @@ "time": 9.43, "timeString": "9 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "melee", @@ -423871,6 +434521,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "-1211166256", + "time": 3.9, + "timeString": "3 sec", + "fuel": null, + "sulfur": 133 + }, { "group": "explosive", "which": null, @@ -423917,7 +434591,7 @@ "time": 7.8, "timeString": "7 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -424037,7 +434711,7 @@ "time": 18.45, "timeString": "18 sec", "fuel": null, - "sulfur": 373 + "sulfur": 140 }, { "group": "guns", @@ -424073,7 +434747,7 @@ "time": 23.475, "timeString": "23 sec", "fuel": null, - "sulfur": 573 + "sulfur": 215 }, { "group": "melee", @@ -424130,8 +434804,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 10, - "timeString": "10 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -424265,7 +434939,7 @@ "time": 13.8, "timeString": "13 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -424325,7 +434999,7 @@ "time": 14.925, "timeString": "14 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -424334,8 +435008,8 @@ "caption": "Pistol Bullet", "quantity": 50, "quantityTypeId": "785728077", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, "sulfur": 125 }, @@ -424358,10 +435032,10 @@ "caption": "HV Pistol Ammo", "quantity": 50, "quantityTypeId": "-1691396643", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -424553,7 +435227,7 @@ "time": 8.94, "timeString": "8 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -424638,8 +435312,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -424663,7 +435337,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -424807,7 +435481,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -424867,7 +435541,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -425155,7 +435829,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -425239,7 +435913,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -425311,7 +435985,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -425359,7 +436033,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -425407,7 +436081,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -425455,7 +436129,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -425539,7 +436213,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -425589,6 +436263,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -425635,7 +436333,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -425755,7 +436453,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -425791,7 +436489,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -425848,8 +436546,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -425983,7 +436681,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -426043,7 +436741,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -426064,8 +436762,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -426079,7 +436777,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -426271,7 +436969,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -426356,8 +437054,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -426381,7 +437079,7 @@ "time": 22, "timeString": "22 sec", "fuel": null, - "sulfur": 80 + "sulfur": 48 }, { "group": "melee", @@ -426525,7 +437223,7 @@ "time": 8.6656, "timeString": "8 sec", "fuel": null, - "sulfur": 680 + "sulfur": 227 }, { "group": "explosive", @@ -426585,7 +437283,7 @@ "time": 50.5, "timeString": "50 sec", "fuel": null, - "sulfur": 420 + "sulfur": 140 }, { "group": "melee", @@ -426873,7 +437571,7 @@ "time": 10.1875, "timeString": "10 sec", "fuel": null, - "sulfur": 560 + "sulfur": 210 }, { "group": "guns", @@ -426957,7 +437655,7 @@ "time": 3.5, "timeString": "3 sec", "fuel": null, - "sulfur": 580 + "sulfur": 193 }, { "group": "melee", @@ -427029,7 +437727,7 @@ "time": 53.6, "timeString": "53 sec", "fuel": null, - "sulfur": 420 + "sulfur": 140 }, { "group": "guns", @@ -427077,7 +437775,7 @@ "time": 8.8, "timeString": "8 sec", "fuel": null, - "sulfur": 840 + "sulfur": 280 }, { "group": "guns", @@ -427125,7 +437823,7 @@ "time": 3, "timeString": "3 sec", "fuel": null, - "sulfur": 520 + "sulfur": 173 }, { "group": "guns", @@ -427173,7 +437871,7 @@ "time": 8.85, "timeString": "8 sec", "fuel": null, - "sulfur": 680 + "sulfur": 227 }, { "group": "guns", @@ -427257,7 +437955,7 @@ "time": 10.03, "timeString": "10 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "melee", @@ -427307,6 +438005,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 18, + "timeString": "18 sec", + "fuel": 6, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 45, + "quantityTypeId": "-1211166256", + "time": 4.4, + "timeString": "4 sec", + "fuel": null, + "sulfur": 150 + }, { "group": "explosive", "which": null, @@ -427353,7 +438075,7 @@ "time": 8.3, "timeString": "8 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -427473,7 +438195,7 @@ "time": 22.5, "timeString": "22 sec", "fuel": null, - "sulfur": 413 + "sulfur": 155 }, { "group": "guns", @@ -427509,7 +438231,7 @@ "time": 24.35, "timeString": "24 sec", "fuel": null, - "sulfur": 640 + "sulfur": 240 }, { "group": "melee", @@ -427564,10 +438286,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 85, - "timeString": "1 min 25 sec", + "time": 42, + "timeString": "42 sec", "fuel": null, "sulfur": null }, @@ -427701,7 +438423,7 @@ "time": 17.15, "timeString": "17 sec", "fuel": null, - "sulfur": 560 + "sulfur": 210 }, { "group": "guns", @@ -427761,7 +438483,7 @@ "time": 15.625, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 280 }, { "group": "guns", @@ -427770,8 +438492,8 @@ "caption": "Pistol Bullet", "quantity": 56, "quantityTypeId": "785728077", - "time": 13.3, - "timeString": "13 sec", + "time": 9.4, + "timeString": "9 sec", "fuel": null, "sulfur": 140 }, @@ -427794,10 +438516,10 @@ "caption": "HV Pistol Ammo", "quantity": 56, "quantityTypeId": "-1691396643", - "time": 13.3, - "timeString": "13 sec", + "time": 9.4, + "timeString": "9 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "guns", @@ -427989,7 +438711,7 @@ "time": 13.46, "timeString": "13 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -428087,7 +438809,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -428207,7 +438929,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -428267,7 +438989,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -428471,7 +439193,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -428555,7 +439277,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -428627,7 +439349,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -428675,7 +439397,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -428723,7 +439445,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -428771,7 +439493,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -428855,7 +439577,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -428881,6 +439603,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "guns", "which": null, @@ -428915,7 +439649,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -429023,7 +439757,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -429059,7 +439793,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -429203,7 +439937,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -429263,7 +439997,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -429299,7 +440033,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -429491,7 +440225,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -429552,8 +440286,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -429577,7 +440311,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -429721,7 +440455,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "explosive", @@ -429781,7 +440515,7 @@ "time": 3.4, "timeString": "3 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "melee", @@ -430177,7 +440911,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 67 + "sulfur": 25 }, { "group": "guns", @@ -430261,7 +440995,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "melee", @@ -430333,7 +441067,7 @@ "time": 5.2, "timeString": "5 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -430381,7 +441115,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 100 + "sulfur": 33 }, { "group": "guns", @@ -430429,7 +441163,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "guns", @@ -430477,7 +441211,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "guns", @@ -430561,7 +441295,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 67 + "sulfur": 25 }, { "group": "melee", @@ -430611,6 +441345,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 6, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 20 + }, { "group": "explosive", "which": null, @@ -430657,7 +441415,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 80 + "sulfur": 30 }, { "group": "guns", @@ -430801,7 +441559,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -430837,7 +441595,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 80 + "sulfur": 30 }, { "group": "melee", @@ -430894,8 +441652,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 4, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -431029,7 +441787,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 67 + "sulfur": 25 }, { "group": "guns", @@ -431089,7 +441847,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 100 + "sulfur": 33 }, { "group": "guns", @@ -431125,7 +441883,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 93 + "sulfur": 35 }, { "group": "guns", @@ -431341,7 +442099,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 80 + "sulfur": 30 }, { "group": "melee", @@ -431438,8 +442196,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -431463,7 +442221,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -431607,7 +442365,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -431667,7 +442425,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -431955,7 +442713,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -432039,7 +442797,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -432111,7 +442869,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -432159,7 +442917,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -432207,7 +442965,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -432255,7 +443013,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -432339,7 +443097,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -432389,6 +443147,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -432435,7 +443217,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -432555,7 +443337,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -432591,7 +443373,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -432648,8 +443430,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -432783,7 +443565,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -432843,7 +443625,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -432864,8 +443646,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -432879,7 +443661,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -433071,7 +443853,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -433156,8 +443938,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -433181,7 +443963,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -433325,7 +444107,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -433385,7 +444167,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -433673,7 +444455,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -433757,7 +444539,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -433829,7 +444611,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -433877,7 +444659,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -433925,7 +444707,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -433973,7 +444755,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -434057,7 +444839,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -434107,6 +444889,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "explosive", "which": null, @@ -434153,7 +444959,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -434273,7 +445079,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -434309,7 +445115,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -434366,8 +445172,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 2, + "timeString": "2 sec", "fuel": null, "sulfur": null }, @@ -434501,7 +445307,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -434561,7 +445367,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -434597,7 +445403,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -434789,7 +445595,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -434874,8 +445680,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -434899,7 +445705,7 @@ "time": 22, "timeString": "22 sec", "fuel": null, - "sulfur": 80 + "sulfur": 48 }, { "group": "melee", @@ -435043,7 +445849,7 @@ "time": 8.6656, "timeString": "8 sec", "fuel": null, - "sulfur": 680 + "sulfur": 227 }, { "group": "explosive", @@ -435103,7 +445909,7 @@ "time": 50.5, "timeString": "50 sec", "fuel": null, - "sulfur": 420 + "sulfur": 140 }, { "group": "melee", @@ -435391,7 +446197,7 @@ "time": 10.1875, "timeString": "10 sec", "fuel": null, - "sulfur": 560 + "sulfur": 210 }, { "group": "guns", @@ -435475,7 +446281,7 @@ "time": 3.5, "timeString": "3 sec", "fuel": null, - "sulfur": 580 + "sulfur": 193 }, { "group": "melee", @@ -435547,7 +446353,7 @@ "time": 53.6, "timeString": "53 sec", "fuel": null, - "sulfur": 420 + "sulfur": 140 }, { "group": "guns", @@ -435595,7 +446401,7 @@ "time": 8.8, "timeString": "8 sec", "fuel": null, - "sulfur": 840 + "sulfur": 280 }, { "group": "guns", @@ -435643,7 +446449,7 @@ "time": 3, "timeString": "3 sec", "fuel": null, - "sulfur": 520 + "sulfur": 173 }, { "group": "guns", @@ -435691,7 +446497,7 @@ "time": 8.85, "timeString": "8 sec", "fuel": null, - "sulfur": 680 + "sulfur": 227 }, { "group": "guns", @@ -435775,7 +446581,7 @@ "time": 10.03, "timeString": "10 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "melee", @@ -435825,6 +446631,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 18, + "timeString": "18 sec", + "fuel": 6, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 45, + "quantityTypeId": "-1211166256", + "time": 4.4, + "timeString": "4 sec", + "fuel": null, + "sulfur": 150 + }, { "group": "explosive", "which": null, @@ -435871,7 +446701,7 @@ "time": 8.3, "timeString": "8 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -435991,7 +446821,7 @@ "time": 22.5, "timeString": "22 sec", "fuel": null, - "sulfur": 413 + "sulfur": 155 }, { "group": "guns", @@ -436027,7 +446857,7 @@ "time": 24.35, "timeString": "24 sec", "fuel": null, - "sulfur": 640 + "sulfur": 240 }, { "group": "melee", @@ -436082,10 +446912,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 85, - "timeString": "1 min 25 sec", + "time": 42, + "timeString": "42 sec", "fuel": null, "sulfur": null }, @@ -436219,7 +447049,7 @@ "time": 17.15, "timeString": "17 sec", "fuel": null, - "sulfur": 560 + "sulfur": 210 }, { "group": "guns", @@ -436279,7 +447109,7 @@ "time": 15.625, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 280 }, { "group": "guns", @@ -436288,8 +447118,8 @@ "caption": "Pistol Bullet", "quantity": 56, "quantityTypeId": "785728077", - "time": 13.3, - "timeString": "13 sec", + "time": 9.4, + "timeString": "9 sec", "fuel": null, "sulfur": 140 }, @@ -436312,10 +447142,10 @@ "caption": "HV Pistol Ammo", "quantity": 56, "quantityTypeId": "-1691396643", - "time": 13.3, - "timeString": "13 sec", + "time": 9.4, + "timeString": "9 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "guns", @@ -436507,7 +447337,7 @@ "time": 13.46, "timeString": "13 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -436592,8 +447422,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -436617,7 +447447,7 @@ "time": 136, "timeString": "2 min 16 sec", "fuel": null, - "sulfur": 460 + "sulfur": 276 }, { "group": "melee", @@ -436761,7 +447591,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -436821,7 +447651,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -437109,7 +447939,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -437193,7 +448023,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -437265,7 +448095,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -437313,7 +448143,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -437361,7 +448191,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -437409,7 +448239,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -437493,7 +448323,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -437543,6 +448373,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -437589,7 +448443,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -437709,7 +448563,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -437745,7 +448599,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -437802,8 +448656,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 34, - "timeString": "34 sec", + "time": 17, + "timeString": "17 sec", "fuel": null, "sulfur": null }, @@ -437937,7 +448791,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -437997,7 +448851,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -438006,8 +448860,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -438030,10 +448884,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -438225,7 +449079,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -438310,8 +449164,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -438335,7 +449189,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 200 + "sulfur": 120 }, { "group": "melee", @@ -438479,7 +449333,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -438539,7 +449393,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -438827,7 +449681,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -438911,7 +449765,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -438983,7 +449837,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -439031,7 +449885,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -439079,7 +449933,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -439127,7 +449981,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -439211,7 +450065,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -439261,6 +450115,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -439307,7 +450185,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -439427,7 +450305,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -439463,7 +450341,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -439520,8 +450398,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -439655,7 +450533,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -439715,7 +450593,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -439736,8 +450614,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -439751,7 +450629,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -439943,7 +450821,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -440028,8 +450906,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -440053,7 +450931,7 @@ "time": 136, "timeString": "2 min 16 sec", "fuel": null, - "sulfur": 460 + "sulfur": 276 }, { "group": "melee", @@ -440197,7 +451075,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -440257,7 +451135,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -440545,7 +451423,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -440629,7 +451507,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -440701,7 +451579,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -440749,7 +451627,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -440797,7 +451675,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -440845,7 +451723,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -440929,7 +451807,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -440979,6 +451857,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -441025,7 +451927,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -441145,7 +452047,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -441181,7 +452083,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -441238,8 +452140,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 34, - "timeString": "34 sec", + "time": 17, + "timeString": "17 sec", "fuel": null, "sulfur": null }, @@ -441373,7 +452275,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -441433,7 +452335,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -441442,8 +452344,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -441466,10 +452368,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -441661,7 +452563,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -441746,8 +452648,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -441771,7 +452673,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -441915,7 +452817,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 120 + "sulfur": 40 }, { "group": "explosive", @@ -441975,7 +452877,7 @@ "time": 5.1, "timeString": "5 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "melee", @@ -442263,7 +453165,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 107 + "sulfur": 40 }, { "group": "guns", @@ -442347,7 +453249,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 120 + "sulfur": 40 }, { "group": "melee", @@ -442419,7 +453321,7 @@ "time": 7.8, "timeString": "7 sec", "fuel": null, - "sulfur": 80 + "sulfur": 27 }, { "group": "guns", @@ -442467,7 +453369,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -442515,7 +453417,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 100 + "sulfur": 33 }, { "group": "guns", @@ -442563,7 +453465,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 120 + "sulfur": 40 }, { "group": "guns", @@ -442647,7 +453549,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 93 + "sulfur": 35 }, { "group": "melee", @@ -442697,6 +453599,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 7, + "quantityTypeId": null, + "time": 18.1, + "timeString": "18 sec", + "fuel": 7, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 8, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 27 + }, { "group": "explosive", "which": null, @@ -442743,7 +453669,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 107 + "sulfur": 40 }, { "group": "melee", @@ -442863,7 +453789,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 80 + "sulfur": 30 }, { "group": "guns", @@ -442899,7 +453825,7 @@ "time": 4.625, "timeString": "4 sec", "fuel": null, - "sulfur": 120 + "sulfur": 45 }, { "group": "melee", @@ -442956,8 +453882,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 2, - "timeString": "2 sec", + "time": 1, + "timeString": "1 sec", "fuel": null, "sulfur": null }, @@ -443091,7 +454017,7 @@ "time": 1.05, "timeString": "1 sec", "fuel": null, - "sulfur": 107 + "sulfur": 40 }, { "group": "guns", @@ -443151,7 +454077,7 @@ "time": 1.225, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -443187,7 +454113,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -443379,7 +454305,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 107 + "sulfur": 40 }, { "group": "melee", @@ -443464,8 +454390,8 @@ "quantityTypeId": null, "time": 4.9323852192856, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -443489,7 +454415,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -443633,7 +454559,7 @@ "time": 12.1314, "timeString": "12 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "explosive", @@ -443693,7 +454619,7 @@ "time": 92.6, "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "melee", @@ -443981,7 +454907,7 @@ "time": 19.475, "timeString": "19 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -444065,7 +454991,7 @@ "time": 6.5, "timeString": "6 sec", "fuel": null, - "sulfur": 1060 + "sulfur": 354 }, { "group": "melee", @@ -444137,7 +455063,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -444185,7 +455111,7 @@ "time": 16.64, "timeString": "16 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -444233,7 +455159,7 @@ "time": 5.52, "timeString": "5 sec", "fuel": null, - "sulfur": 940 + "sulfur": 313 }, { "group": "guns", @@ -444281,7 +455207,7 @@ "time": 16.475, "timeString": "16 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "guns", @@ -444365,7 +455291,7 @@ "time": 18.86, "timeString": "18 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -444415,6 +455341,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 62, + "quantityTypeId": null, + "time": 23.6, + "timeString": "23 sec", + "fuel": 62, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 80, + "quantityTypeId": "-1211166256", + "time": 7.9, + "timeString": "7 sec", + "fuel": null, + "sulfur": 266 + }, { "group": "explosive", "which": null, @@ -444461,7 +455411,7 @@ "time": 15.7, "timeString": "15 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -444581,7 +455531,7 @@ "time": 40.5, "timeString": "40 sec", "fuel": null, - "sulfur": 733 + "sulfur": 275 }, { "group": "guns", @@ -444617,7 +455567,7 @@ "time": 47.125, "timeString": "47 sec", "fuel": null, - "sulfur": 1146 + "sulfur": 430 }, { "group": "melee", @@ -444674,8 +455624,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 20, - "timeString": "20 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -444809,7 +455759,7 @@ "time": 30.35, "timeString": "30 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -444869,7 +455819,7 @@ "time": 29.85, "timeString": "29 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -444878,8 +455828,8 @@ "caption": "Pistol Bullet", "quantity": 100, "quantityTypeId": "785728077", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 250 }, @@ -444902,10 +455852,10 @@ "caption": "HV Pistol Ammo", "quantity": 100, "quantityTypeId": "-1691396643", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -445097,7 +456047,7 @@ "time": 21.88, "timeString": "21 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -445195,7 +456145,7 @@ "time": 418, "timeString": "6 min 58 sec", "fuel": null, - "sulfur": 1400 + "sulfur": 840 }, { "group": "melee", @@ -445339,7 +456289,7 @@ "time": 38570.2889, "timeString": "10 hours 42 min 50 sec", "fuel": null, - "sulfur": 2800000 + "sulfur": 933800 }, { "group": "explosive", @@ -445399,7 +456349,7 @@ "time": 220932.5, "timeString": "61 hours 22 min 12 sec", "fuel": null, - "sulfur": 1750000 + "sulfur": 583625 }, { "group": "melee", @@ -445627,7 +456577,7 @@ "time": 46787.4625, "timeString": "12 hours 59 min 47 sec", "fuel": null, - "sulfur": 2332750 + "sulfur": 875000 }, { "group": "guns", @@ -445711,7 +456661,7 @@ "time": 28145.875, "timeString": "7 hours 49 min 5 sec", "fuel": null, - "sulfur": 2434800 + "sulfur": 812006 }, { "group": "melee", @@ -445783,7 +456733,7 @@ "time": 234497, "timeString": "65 hours 8 min 17 sec", "fuel": null, - "sulfur": 1750000 + "sulfur": 583625 }, { "group": "guns", @@ -445831,7 +456781,7 @@ "time": 43631.92, "timeString": "12 hours 7 min 11 sec", "fuel": null, - "sulfur": 3500000 + "sulfur": 1167250 }, { "group": "guns", @@ -445879,7 +456829,7 @@ "time": 20863.92, "timeString": "5 hours 47 min 43 sec", "fuel": null, - "sulfur": 2153860 + "sulfur": 718312 }, { "group": "guns", @@ -445927,7 +456877,7 @@ "time": 46021.75, "timeString": "12 hours 47 min 1 sec", "fuel": null, - "sulfur": 2800000 + "sulfur": 933800 }, { "group": "guns", @@ -446011,7 +456961,7 @@ "time": 46562.05, "timeString": "12 hours 56 min 2 sec", "fuel": null, - "sulfur": 2073561 + "sulfur": 777780 }, { "group": "melee", @@ -446061,6 +457011,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 186667, + "quantityTypeId": "-1211166256", + "time": 20781.4, + "timeString": "5 hours 46 min 21 sec", + "fuel": null, + "sulfur": 621601 + }, { "group": "guns", "which": null, @@ -446095,7 +457057,7 @@ "time": 42932.4, "timeString": "11 hours 55 min 32 sec", "fuel": null, - "sulfur": 2488271 + "sulfur": 933335 }, { "group": "melee", @@ -446215,7 +457177,7 @@ "time": 95454, "timeString": "26 hours 30 min 54 sec", "fuel": null, - "sulfur": 1696549 + "sulfur": 636365 }, { "group": "guns", @@ -446251,7 +457213,7 @@ "time": 115621.6, "timeString": "32 hours 7 min 1 sec", "fuel": null, - "sulfur": 2666000 + "sulfur": 1000000 }, { "group": "melee", @@ -446306,10 +457268,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 163, + "quantity": 157, "quantityTypeId": null, - "time": 11829, - "timeString": "3 hours 17 min 9 sec", + "time": 8906, + "timeString": "2 hours 28 min 26 sec", "fuel": null, "sulfur": null }, @@ -446443,7 +457405,7 @@ "time": 74372.1, "timeString": "20 hours 39 min 32 sec", "fuel": null, - "sulfur": 2332750 + "sulfur": 875000 }, { "group": "guns", @@ -446503,7 +457465,7 @@ "time": 76833.65, "timeString": "21 hours 20 min 33 sec", "fuel": null, - "sulfur": 3500000 + "sulfur": 1167250 }, { "group": "guns", @@ -446512,8 +457474,8 @@ "caption": "Pistol Bullet", "quantity": 233334, "quantityTypeId": "785728077", - "time": 61249.1, - "timeString": "17 hours 49 sec", + "time": 53663.6, + "timeString": "14 hours 54 min 23 sec", "fuel": null, "sulfur": 583335 }, @@ -446524,8 +457486,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 233334, "quantityTypeId": "51984655", - "time": 61249.1, - "timeString": "17 hours 49 sec", + "time": 53663.6, + "timeString": "14 hours 54 min 23 sec", "fuel": null, "sulfur": 1943672 }, @@ -446536,10 +457498,10 @@ "caption": "HV Pistol Ammo", "quantity": 233334, "quantityTypeId": "-1691396643", - "time": 61249.1, - "timeString": "17 hours 49 sec", + "time": 53663.6, + "timeString": "14 hours 54 min 23 sec", "fuel": null, - "sulfur": 3110342 + "sulfur": 1166670 }, { "group": "guns", @@ -446731,7 +457693,7 @@ "time": 60385.29, "timeString": "16 hours 46 min 25 sec", "fuel": null, - "sulfur": 2488271 + "sulfur": 933335 }, { "group": "melee", @@ -446816,8 +457778,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -446841,7 +457803,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -446985,7 +457947,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -447045,7 +458007,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -447441,7 +458403,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -447525,7 +458487,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -447597,7 +458559,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -447645,7 +458607,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -447693,7 +458655,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -447741,7 +458703,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -447825,7 +458787,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -447875,6 +458837,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -447921,7 +458907,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -448065,7 +459051,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -448101,7 +459087,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -448158,8 +459144,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 3, + "timeString": "3 sec", "fuel": null, "sulfur": null }, @@ -448293,7 +459279,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -448353,7 +459339,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -448389,7 +459375,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -448605,7 +459591,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -448698,12 +459684,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 236, + "quantity": 118, "quantityTypeId": null, - "time": 1410, - "timeString": "23 min 30 sec", - "fuel": 59708, - "sulfur": 143960 + "time": 702, + "timeString": "11 min 42 sec", + "fuel": 8850, + "sulfur": 35400 }, { "group": "explosive", @@ -448727,7 +459713,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -448871,7 +459857,7 @@ "time": 11.9981, "timeString": "11 sec", "fuel": null, - "sulfur": 1180 + "sulfur": 394 }, { "group": "explosive", @@ -448931,7 +459917,7 @@ "time": 90.9, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 740 + "sulfur": 247 }, { "group": "melee", @@ -449327,7 +460313,7 @@ "time": 19.3625, "timeString": "19 sec", "fuel": null, - "sulfur": 986 + "sulfur": 370 }, { "group": "guns", @@ -449411,7 +460397,7 @@ "time": 6.375, "timeString": "6 sec", "fuel": null, - "sulfur": 1040 + "sulfur": 347 }, { "group": "melee", @@ -449483,7 +460469,7 @@ "time": 96.4, "timeString": "1 min 36 sec", "fuel": null, - "sulfur": 740 + "sulfur": 247 }, { "group": "guns", @@ -449531,7 +460517,7 @@ "time": 16.52, "timeString": "16 sec", "fuel": null, - "sulfur": 1480 + "sulfur": 494 }, { "group": "guns", @@ -449579,7 +460565,7 @@ "time": 5.4, "timeString": "5 sec", "fuel": null, - "sulfur": 920 + "sulfur": 307 }, { "group": "guns", @@ -449627,7 +460613,7 @@ "time": 16.3, "timeString": "16 sec", "fuel": null, - "sulfur": 1180 + "sulfur": 394 }, { "group": "guns", @@ -449711,7 +460697,7 @@ "time": 18.71, "timeString": "18 sec", "fuel": null, - "sulfur": 880 + "sulfur": 330 }, { "group": "melee", @@ -449761,6 +460747,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1475, + "quantityTypeId": null, + "time": 178, + "timeString": "2 min 58 sec", + "fuel": 1475, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 79, + "quantityTypeId": "-1211166256", + "time": 7.8, + "timeString": "7 sec", + "fuel": null, + "sulfur": 263 + }, { "group": "explosive", "which": null, @@ -449807,7 +460817,7 @@ "time": 15.6, "timeString": "15 sec", "fuel": null, - "sulfur": 1053 + "sulfur": 395 }, { "group": "guns", @@ -449951,7 +460961,7 @@ "time": 36.75, "timeString": "36 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "guns", @@ -449987,7 +460997,7 @@ "time": 46.95, "timeString": "46 sec", "fuel": null, - "sulfur": 1133 + "sulfur": 425 }, { "group": "melee", @@ -450044,8 +461054,8 @@ "caption": null, "quantity": 3, "quantityTypeId": null, - "time": 199, - "timeString": "3 min 19 sec", + "time": 150, + "timeString": "2 min 30 sec", "fuel": null, "sulfur": null }, @@ -450179,7 +461189,7 @@ "time": 30.2, "timeString": "30 sec", "fuel": null, - "sulfur": 986 + "sulfur": 370 }, { "group": "guns", @@ -450239,7 +461249,7 @@ "time": 29.675, "timeString": "29 sec", "fuel": null, - "sulfur": 1480 + "sulfur": 494 }, { "group": "guns", @@ -450248,8 +461258,8 @@ "caption": "Pistol Bullet", "quantity": 99, "quantityTypeId": "785728077", - "time": 25.4, - "timeString": "25 sec", + "time": 21.5, + "timeString": "21 sec", "fuel": null, "sulfur": 248 }, @@ -450272,10 +461282,10 @@ "caption": "HV Pistol Ammo", "quantity": 99, "quantityTypeId": "-1691396643", - "time": 25.4, - "timeString": "25 sec", + "time": 21.5, + "timeString": "21 sec", "fuel": null, - "sulfur": 1320 + "sulfur": 495 }, { "group": "guns", @@ -450491,7 +461501,7 @@ "time": 21.75, "timeString": "21 sec", "fuel": null, - "sulfur": 1053 + "sulfur": 395 }, { "group": "melee", @@ -450588,8 +461598,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -450613,7 +461623,7 @@ "time": 274, "timeString": "4 min 34 sec", "fuel": null, - "sulfur": 920 + "sulfur": 552 }, { "group": "melee", @@ -450757,7 +461767,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -450817,7 +461827,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -451105,7 +462115,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -451189,7 +462199,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -451261,7 +462271,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -451309,7 +462319,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -451357,7 +462367,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -451405,7 +462415,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -451489,7 +462499,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -451539,6 +462549,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -451585,7 +462619,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -451705,7 +462739,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -451741,7 +462775,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -451798,8 +462832,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 67, - "timeString": "1 min 7 sec", + "time": 34, + "timeString": "34 sec", "fuel": null, "sulfur": null }, @@ -451933,7 +462967,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -451993,7 +463027,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -452002,8 +463036,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -452014,8 +463048,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 127, "quantityTypeId": "51984655", - "time": 57.1, - "timeString": "57 sec", + "time": 53.2, + "timeString": "53 sec", "fuel": null, "sulfur": 1058 }, @@ -452026,10 +463060,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -452221,7 +463255,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -452306,8 +463340,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -452331,7 +463365,7 @@ "time": 28, "timeString": "28 sec", "fuel": null, - "sulfur": 100 + "sulfur": 60 }, { "group": "melee", @@ -452475,7 +463509,7 @@ "time": 19.0641, "timeString": "19 sec", "fuel": null, - "sulfur": 1600 + "sulfur": 534 }, { "group": "explosive", @@ -452535,7 +463569,7 @@ "time": 122.9, "timeString": "2 min 2 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "melee", @@ -452823,7 +463857,7 @@ "time": 25.075, "timeString": "25 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -452907,7 +463941,7 @@ "time": 15, "timeString": "15 sec", "fuel": null, - "sulfur": 1400 + "sulfur": 467 }, { "group": "melee", @@ -452979,7 +464013,7 @@ "time": 131, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -453027,7 +464061,7 @@ "time": 23.52, "timeString": "23 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -453075,7 +464109,7 @@ "time": 7.32, "timeString": "7 sec", "fuel": null, - "sulfur": 1240 + "sulfur": 414 }, { "group": "guns", @@ -453123,7 +464157,7 @@ "time": 23.05, "timeString": "23 sec", "fuel": null, - "sulfur": 1600 + "sulfur": 534 }, { "group": "guns", @@ -453207,7 +464241,7 @@ "time": 24.4, "timeString": "24 sec", "fuel": null, - "sulfur": 1186 + "sulfur": 445 }, { "group": "melee", @@ -453257,6 +464291,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 107, + "quantityTypeId": "-1211166256", + "time": 10.6, + "timeString": "10 sec", + "fuel": null, + "sulfur": 356 + }, { "group": "explosive", "which": null, @@ -453303,7 +464361,7 @@ "time": 22.3, "timeString": "22 sec", "fuel": null, - "sulfur": 1426 + "sulfur": 535 }, { "group": "melee", @@ -453423,7 +464481,7 @@ "time": 54, "timeString": "54 sec", "fuel": null, - "sulfur": 973 + "sulfur": 365 }, { "group": "guns", @@ -453459,7 +464517,7 @@ "time": 65.1, "timeString": "1 min 5 sec", "fuel": null, - "sulfur": 1533 + "sulfur": 575 }, { "group": "melee", @@ -453514,10 +464572,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 10, + "quantity": 6, "quantityTypeId": null, - "time": 676, - "timeString": "11 min 16 sec", + "time": 339, + "timeString": "5 min 39 sec", "fuel": null, "sulfur": null }, @@ -453651,7 +464709,7 @@ "time": 39.6, "timeString": "39 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -453711,7 +464769,7 @@ "time": 42.675, "timeString": "42 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -453720,8 +464778,8 @@ "caption": "Pistol Bullet", "quantity": 134, "quantityTypeId": "785728077", - "time": 32.8, - "timeString": "32 sec", + "time": 28.9, + "timeString": "28 sec", "fuel": null, "sulfur": 335 }, @@ -453744,10 +464802,10 @@ "caption": "HV Pistol Ammo", "quantity": 134, "quantityTypeId": "-1691396643", - "time": 32.8, - "timeString": "32 sec", + "time": 28.9, + "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "guns", @@ -453939,7 +464997,7 @@ "time": 33.13, "timeString": "33 sec", "fuel": null, - "sulfur": 1426 + "sulfur": 535 }, { "group": "melee", @@ -454037,7 +465095,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -454157,7 +465215,7 @@ "time": 1.1997, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "explosive", @@ -454217,7 +465275,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "melee", @@ -454421,7 +465479,7 @@ "time": 1.35, "timeString": "1 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -454505,7 +465563,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 180 + "sulfur": 60 }, { "group": "melee", @@ -454577,7 +465635,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 140 + "sulfur": 47 }, { "group": "guns", @@ -454625,7 +465683,7 @@ "time": 1.44, "timeString": "1 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -454673,7 +465731,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 53 }, { "group": "guns", @@ -454721,7 +465779,7 @@ "time": 1.575, "timeString": "1 sec", "fuel": null, - "sulfur": 200 + "sulfur": 67 }, { "group": "guns", @@ -454805,7 +465863,7 @@ "time": 1.65, "timeString": "1 sec", "fuel": null, - "sulfur": 160 + "sulfur": 60 }, { "group": "melee", @@ -454831,6 +465889,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 14, + "quantityTypeId": "-1211166256", + "time": 1.3, + "timeString": "1 sec", + "fuel": null, + "sulfur": 47 + }, { "group": "guns", "which": null, @@ -454865,7 +465935,7 @@ "time": 1.3, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -454973,7 +466043,7 @@ "time": 4.95, "timeString": "4 sec", "fuel": null, - "sulfur": 133 + "sulfur": 50 }, { "group": "guns", @@ -455009,7 +466079,7 @@ "time": 5.675, "timeString": "5 sec", "fuel": null, - "sulfur": 200 + "sulfur": 75 }, { "group": "melee", @@ -455153,7 +466223,7 @@ "time": 4.55, "timeString": "4 sec", "fuel": null, - "sulfur": 173 + "sulfur": 65 }, { "group": "guns", @@ -455213,7 +466283,7 @@ "time": 2.1, "timeString": "2 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -455249,7 +466319,7 @@ "time": 1.6, "timeString": "1 sec", "fuel": null, - "sulfur": 227 + "sulfur": 85 }, { "group": "guns", @@ -455441,7 +466511,7 @@ "time": 1.69, "timeString": "1 sec", "fuel": null, - "sulfur": 187 + "sulfur": 70 }, { "group": "melee", @@ -455502,8 +466572,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -455527,7 +466597,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -455671,7 +466741,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -455731,7 +466801,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -456127,7 +467197,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -456211,7 +467281,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -456283,7 +467353,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -456331,7 +467401,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -456379,7 +467449,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -456427,7 +467497,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -456511,7 +467581,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -456561,6 +467631,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 18, + "timeString": "18 sec", + "fuel": 6, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": null, @@ -456607,7 +467701,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -456751,7 +467845,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -456787,7 +467881,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -456979,7 +468073,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -457039,7 +468133,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -457075,7 +468169,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -457291,7 +468385,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -457388,8 +468482,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -457413,7 +468507,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -457557,7 +468651,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -457617,7 +468711,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -457905,7 +468999,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -457989,7 +469083,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -458061,7 +469155,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -458109,7 +469203,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -458157,7 +469251,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -458205,7 +469299,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -458289,7 +469383,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -458339,6 +469433,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -458385,7 +469503,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -458505,7 +469623,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -458541,7 +469659,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -458596,10 +469714,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 7, + "quantity": 5, "quantityTypeId": null, - "time": 506, - "timeString": "8 min 26 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -458733,7 +469851,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -458793,7 +469911,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -458802,8 +469920,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -458814,8 +469932,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 28, "quantityTypeId": "51984655", - "time": 31.6, - "timeString": "31 sec", + "time": 27.7, + "timeString": "27 sec", "fuel": null, "sulfur": 233 }, @@ -458826,10 +469944,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -459021,7 +470139,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -459106,8 +470224,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -459131,7 +470249,7 @@ "time": 22, "timeString": "22 sec", "fuel": null, - "sulfur": 80 + "sulfur": 48 }, { "group": "melee", @@ -459275,7 +470393,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -459335,7 +470453,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -459623,7 +470741,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -459707,7 +470825,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -459779,7 +470897,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -459827,7 +470945,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -459875,7 +470993,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -459923,7 +471041,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -460007,7 +471125,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -460057,6 +471175,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -460103,7 +471245,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -460223,7 +471365,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -460259,7 +471401,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -460316,8 +471458,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -460451,7 +471593,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -460511,7 +471653,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -460547,7 +471689,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -460739,7 +471881,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -460824,8 +471966,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -460849,7 +471991,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -460993,7 +472135,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -461053,7 +472195,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -461449,7 +472591,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -461533,7 +472675,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -461605,7 +472747,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -461653,7 +472795,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -461701,7 +472843,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -461749,7 +472891,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -461833,7 +472975,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -461883,6 +473025,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -461929,7 +473095,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -462073,7 +473239,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -462109,7 +473275,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -462166,8 +473332,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 3, + "timeString": "3 sec", "fuel": null, "sulfur": null }, @@ -462301,7 +473467,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -462361,7 +473527,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -462397,7 +473563,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -462613,7 +473779,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -462710,8 +473876,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -462735,7 +473901,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -462879,7 +474045,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -462939,7 +474105,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -463335,7 +474501,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -463419,7 +474585,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -463491,7 +474657,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -463539,7 +474705,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -463587,7 +474753,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -463635,7 +474801,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -463719,7 +474885,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -463769,6 +474935,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 18.5, + "timeString": "18 sec", + "fuel": 11, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -463815,7 +475005,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -463959,7 +475149,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -463995,7 +475185,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -464052,8 +475242,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 4, - "timeString": "4 sec", + "time": 3, + "timeString": "3 sec", "fuel": null, "sulfur": null }, @@ -464187,7 +475377,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -464247,7 +475437,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -464283,7 +475473,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -464499,7 +475689,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -464596,8 +475786,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -464621,7 +475811,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -464765,7 +475955,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -464825,7 +476015,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -465113,7 +476303,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -465197,7 +476387,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -465269,7 +476459,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -465317,7 +476507,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -465365,7 +476555,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -465413,7 +476603,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -465497,7 +476687,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -465547,6 +476737,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -465593,7 +476807,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -465713,7 +476927,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -465749,7 +476963,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -465806,8 +477020,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 4, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -465941,7 +477155,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -466001,7 +477215,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -466037,7 +477251,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -466229,7 +477443,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -466314,8 +477528,8 @@ "quantityTypeId": null, "time": 16.441284064285, "timeString": "16 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -466339,7 +477553,7 @@ "time": 94, "timeString": "1 min 34 sec", "fuel": null, - "sulfur": 320 + "sulfur": 192 }, { "group": "melee", @@ -466483,7 +477697,7 @@ "time": 34.7957, "timeString": "34 sec", "fuel": null, - "sulfur": 2680 + "sulfur": 894 }, { "group": "explosive", @@ -466543,7 +477757,7 @@ "time": 207.1, "timeString": "3 min 27 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "melee", @@ -466831,7 +478045,7 @@ "time": 43.7625, "timeString": "43 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -466915,7 +478129,7 @@ "time": 20.75, "timeString": "20 sec", "fuel": null, - "sulfur": 2320 + "sulfur": 774 }, { "group": "melee", @@ -466987,7 +478201,7 @@ "time": 222.2, "timeString": "3 min 42 sec", "fuel": null, - "sulfur": 1680 + "sulfur": 560 }, { "group": "guns", @@ -467035,7 +478249,7 @@ "time": 39.32, "timeString": "39 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -467083,7 +478297,7 @@ "time": 19.62, "timeString": "19 sec", "fuel": null, - "sulfur": 2060 + "sulfur": 687 }, { "group": "guns", @@ -467131,7 +478345,7 @@ "time": 41.725, "timeString": "41 sec", "fuel": null, - "sulfur": 2680 + "sulfur": 894 }, { "group": "guns", @@ -467215,7 +478429,7 @@ "time": 42.36, "timeString": "42 sec", "fuel": null, - "sulfur": 1986 + "sulfur": 745 }, { "group": "melee", @@ -467265,6 +478479,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 204, + "quantityTypeId": null, + "time": 41.2, + "timeString": "41 sec", + "fuel": 204, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 178, + "quantityTypeId": "-1211166256", + "time": 17.7, + "timeString": "17 sec", + "fuel": null, + "sulfur": 593 + }, { "group": "explosive", "which": null, @@ -467311,7 +478549,7 @@ "time": 37.2, "timeString": "37 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "melee", @@ -467431,7 +478669,7 @@ "time": 90.15, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 1626 + "sulfur": 610 }, { "group": "guns", @@ -467467,7 +478705,7 @@ "time": 107.425, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 2546 + "sulfur": 955 }, { "group": "melee", @@ -467522,10 +478760,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 5, + "quantity": 3, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 169, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": null }, @@ -467659,7 +478897,7 @@ "time": 68.9, "timeString": "1 min 8 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -467719,7 +478957,7 @@ "time": 71.3, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -467728,8 +478966,8 @@ "caption": "Pistol Bullet", "quantity": 223, "quantityTypeId": "785728077", - "time": 57.3, - "timeString": "57 sec", + "time": 49.5, + "timeString": "49 sec", "fuel": null, "sulfur": 558 }, @@ -467740,8 +478978,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 107, "quantityTypeId": "51984655", - "time": 51.2, - "timeString": "51 sec", + "time": 47.3, + "timeString": "47 sec", "fuel": null, "sulfur": 891 }, @@ -467752,10 +478990,10 @@ "caption": "HV Pistol Ammo", "quantity": 223, "quantityTypeId": "-1691396643", - "time": 57.3, - "timeString": "57 sec", + "time": 49.5, + "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "guns", @@ -467947,7 +479185,7 @@ "time": 53.97, "timeString": "53 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "melee", @@ -468032,8 +479270,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -468057,7 +479295,7 @@ "time": 70, "timeString": "1 min 10 sec", "fuel": null, - "sulfur": 240 + "sulfur": 144 }, { "group": "melee", @@ -468201,7 +479439,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -468261,7 +479499,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -468549,7 +479787,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -468633,7 +479871,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -468705,7 +479943,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -468753,7 +479991,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -468801,7 +480039,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -468849,7 +480087,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -468933,7 +480171,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -468983,6 +480221,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -469029,7 +480291,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -469149,7 +480411,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -469185,7 +480447,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -469242,8 +480504,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -469377,7 +480639,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -469437,7 +480699,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -469446,8 +480708,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -469470,10 +480732,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -469665,7 +480927,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -469750,8 +481012,8 @@ "quantityTypeId": null, "time": 4.1103210160714, "timeString": "4 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -469775,7 +481037,7 @@ "time": 70, "timeString": "1 min 10 sec", "fuel": null, - "sulfur": 240 + "sulfur": 144 }, { "group": "melee", @@ -469919,7 +481181,7 @@ "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "explosive", @@ -469979,7 +481241,7 @@ "time": 75.8, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "melee", @@ -470267,7 +481529,7 @@ "time": 15.3375, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -470351,7 +481613,7 @@ "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 880 + "sulfur": 293 }, { "group": "melee", @@ -470423,7 +481685,7 @@ "time": 83, "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 640 + "sulfur": 213 }, { "group": "guns", @@ -470471,7 +481733,7 @@ "time": 15.2, "timeString": "15 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -470519,7 +481781,7 @@ "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 780 + "sulfur": 260 }, { "group": "guns", @@ -470567,7 +481829,7 @@ "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -470651,7 +481913,7 @@ "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "melee", @@ -470701,6 +481963,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 51, + "quantityTypeId": null, + "time": 22.5, + "timeString": "22 sec", + "fuel": 51, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, @@ -470747,7 +482033,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -470867,7 +482153,7 @@ "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 613 + "sulfur": 230 }, { "group": "guns", @@ -470903,7 +482189,7 @@ "time": 38.225, "timeString": "38 sec", "fuel": null, - "sulfur": 960 + "sulfur": 360 }, { "group": "melee", @@ -470960,8 +482246,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 9, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -471095,7 +482381,7 @@ "time": 25.8, "timeString": "25 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "guns", @@ -471155,7 +482441,7 @@ "time": 23.525, "timeString": "23 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -471164,8 +482450,8 @@ "caption": "Pistol Bullet", "quantity": 84, "quantityTypeId": "785728077", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 210 }, @@ -471188,10 +482474,10 @@ "caption": "HV Pistol Ammo", "quantity": 84, "quantityTypeId": "-1691396643", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 1120 + "sulfur": 420 }, { "group": "guns", @@ -471383,7 +482669,7 @@ "time": 20.19, "timeString": "20 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -471468,8 +482754,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -471493,7 +482779,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -471637,7 +482923,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -471697,7 +482983,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -471985,7 +483271,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -472069,7 +483355,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -472141,7 +483427,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -472189,7 +483475,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -472237,7 +483523,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -472285,7 +483571,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -472369,7 +483655,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -472419,6 +483705,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -472465,7 +483775,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -472585,7 +483895,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -472621,7 +483931,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -472678,8 +483988,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 7, + "timeString": "7 sec", "fuel": null, "sulfur": null }, @@ -472813,7 +484123,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -472873,7 +484183,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -472894,8 +484204,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -472909,7 +484219,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -473101,7 +484411,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -473199,7 +484509,7 @@ "time": 298, "timeString": "4 min 58 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 600 }, { "group": "melee", @@ -473674,10 +484984,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 8, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 424, + "timeString": "7 min 4 sec", "fuel": null, "sulfur": null }, @@ -473944,8 +485254,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -473969,7 +485279,7 @@ "time": 52, "timeString": "52 sec", "fuel": null, - "sulfur": 180 + "sulfur": 108 }, { "group": "melee", @@ -474113,7 +485423,7 @@ "time": 42.5282, "timeString": "42 sec", "fuel": null, - "sulfur": 3200 + "sulfur": 1067 }, { "group": "explosive", @@ -474173,7 +485483,7 @@ "time": 247.5, "timeString": "4 min 7 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "melee", @@ -474461,7 +485771,7 @@ "time": 53.05, "timeString": "53 sec", "fuel": null, - "sulfur": 2666 + "sulfur": 1000 }, { "group": "guns", @@ -474545,7 +485855,7 @@ "time": 30.125, "timeString": "30 sec", "fuel": null, - "sulfur": 2800 + "sulfur": 934 }, { "group": "melee", @@ -474617,7 +485927,7 @@ "time": 265, "timeString": "4 min 25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -474665,7 +485975,7 @@ "time": 47.16, "timeString": "47 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -474713,7 +486023,7 @@ "time": 22.14, "timeString": "22 sec", "fuel": null, - "sulfur": 2480 + "sulfur": 827 }, { "group": "guns", @@ -474761,7 +486071,7 @@ "time": 49.35, "timeString": "49 sec", "fuel": null, - "sulfur": 3200 + "sulfur": 1067 }, { "group": "guns", @@ -474845,7 +486155,7 @@ "time": 51.19, "timeString": "51 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "melee", @@ -474895,6 +486205,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 214, + "quantityTypeId": "-1211166256", + "time": 21.3, + "timeString": "21 sec", + "fuel": null, + "sulfur": 713 + }, { "group": "explosive", "which": null, @@ -474941,7 +486275,7 @@ "time": 48.6, "timeString": "48 sec", "fuel": null, - "sulfur": 2853 + "sulfur": 1070 }, { "group": "melee", @@ -475061,7 +486395,7 @@ "time": 108.15, "timeString": "1 min 48 sec", "fuel": null, - "sulfur": 1946 + "sulfur": 730 }, { "group": "guns", @@ -475097,7 +486431,7 @@ "time": 130.2, "timeString": "2 min 10 sec", "fuel": null, - "sulfur": 3053 + "sulfur": 1145 }, { "group": "melee", @@ -475152,10 +486486,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 19, + "quantity": 18, "quantityTypeId": null, - "time": 1352, - "timeString": "22 min 32 sec", + "time": 1017, + "timeString": "16 min 57 sec", "fuel": null, "sulfur": null }, @@ -475289,7 +486623,7 @@ "time": 82.1, "timeString": "1 min 22 sec", "fuel": null, - "sulfur": 2666 + "sulfur": 1000 }, { "group": "guns", @@ -475349,7 +486683,7 @@ "time": 85.525, "timeString": "1 min 25 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -475358,8 +486692,8 @@ "caption": "Pistol Bullet", "quantity": 267, "quantityTypeId": "785728077", - "time": 69.5, - "timeString": "1 min 9 sec", + "time": 57.8, + "timeString": "57 sec", "fuel": null, "sulfur": 668 }, @@ -475370,8 +486704,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 74, "quantityTypeId": "51984655", - "time": 44, - "timeString": "44 sec", + "time": 40.1, + "timeString": "40 sec", "fuel": null, "sulfur": 616 }, @@ -475382,10 +486716,10 @@ "caption": "HV Pistol Ammo", "quantity": 267, "quantityTypeId": "-1691396643", - "time": 69.5, - "timeString": "1 min 9 sec", + "time": 57.8, + "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "guns", @@ -475577,7 +486911,7 @@ "time": 66.39, "timeString": "1 min 6 sec", "fuel": null, - "sulfur": 2853 + "sulfur": 1070 }, { "group": "melee", @@ -475662,8 +486996,8 @@ "quantityTypeId": null, "time": 3.2882568128571, "timeString": "3 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -475687,7 +487021,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -475831,7 +487165,7 @@ "time": 9.4654, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "explosive", @@ -475891,7 +487225,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "melee", @@ -476179,7 +487513,7 @@ "time": 11.0875, "timeString": "11 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -476263,7 +487597,7 @@ "time": 4.25, "timeString": "4 sec", "fuel": null, - "sulfur": 700 + "sulfur": 233 }, { "group": "melee", @@ -476335,7 +487669,7 @@ "time": 64, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -476383,7 +487717,7 @@ "time": 9.76, "timeString": "9 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -476431,7 +487765,7 @@ "time": 3.6, "timeString": "3 sec", "fuel": null, - "sulfur": 620 + "sulfur": 207 }, { "group": "guns", @@ -476479,7 +487813,7 @@ "time": 9.9, "timeString": "9 sec", "fuel": null, - "sulfur": 800 + "sulfur": 267 }, { "group": "guns", @@ -476563,7 +487897,7 @@ "time": 11.08, "timeString": "11 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -476613,6 +487947,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 41, + "quantityTypeId": null, + "time": 21.5, + "timeString": "21 sec", + "fuel": 41, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 5.3, + "timeString": "5 sec", + "fuel": null, + "sulfur": 180 + }, { "group": "explosive", "which": null, @@ -476659,7 +488017,7 @@ "time": 9.2, "timeString": "9 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -476779,7 +488137,7 @@ "time": 27, "timeString": "27 sec", "fuel": null, - "sulfur": 493 + "sulfur": 185 }, { "group": "guns", @@ -476815,7 +488173,7 @@ "time": 32.55, "timeString": "32 sec", "fuel": null, - "sulfur": 773 + "sulfur": 290 }, { "group": "melee", @@ -476872,8 +488230,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 14, - "timeString": "14 sec", + "time": 10, + "timeString": "10 sec", "fuel": null, "sulfur": null }, @@ -477007,7 +488365,7 @@ "time": 18.35, "timeString": "18 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -477067,7 +488425,7 @@ "time": 21.25, "timeString": "21 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -477088,8 +488446,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 26, "quantityTypeId": "51984655", - "time": 31.4, - "timeString": "31 sec", + "time": 27.5, + "timeString": "27 sec", "fuel": null, "sulfur": 217 }, @@ -477103,7 +488461,7 @@ "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "guns", @@ -477295,7 +488653,7 @@ "time": 14.63, "timeString": "14 sec", "fuel": null, - "sulfur": 720 + "sulfur": 270 }, { "group": "melee", @@ -477380,8 +488738,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -477405,7 +488763,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -477549,7 +488907,7 @@ "time": 3.8657, "timeString": "3 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "explosive", @@ -477609,7 +488967,7 @@ "time": 43.8, "timeString": "43 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "melee", @@ -477897,7 +489255,7 @@ "time": 9.7375, "timeString": "9 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -477981,7 +489339,7 @@ "time": 3.25, "timeString": "3 sec", "fuel": null, - "sulfur": 540 + "sulfur": 180 }, { "group": "melee", @@ -478053,7 +489411,7 @@ "time": 48, "timeString": "48 sec", "fuel": null, - "sulfur": 380 + "sulfur": 127 }, { "group": "guns", @@ -478101,7 +489459,7 @@ "time": 8.32, "timeString": "8 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -478149,7 +489507,7 @@ "time": 2.76, "timeString": "2 sec", "fuel": null, - "sulfur": 480 + "sulfur": 160 }, { "group": "guns", @@ -478197,7 +489555,7 @@ "time": 8.15, "timeString": "8 sec", "fuel": null, - "sulfur": 600 + "sulfur": 200 }, { "group": "guns", @@ -478281,7 +489639,7 @@ "time": 9.43, "timeString": "9 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "melee", @@ -478331,6 +489689,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "-1211166256", + "time": 3.9, + "timeString": "3 sec", + "fuel": null, + "sulfur": 133 + }, { "group": "explosive", "which": null, @@ -478377,7 +489759,7 @@ "time": 7.8, "timeString": "7 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -478497,7 +489879,7 @@ "time": 18.45, "timeString": "18 sec", "fuel": null, - "sulfur": 373 + "sulfur": 140 }, { "group": "guns", @@ -478533,7 +489915,7 @@ "time": 23.475, "timeString": "23 sec", "fuel": null, - "sulfur": 573 + "sulfur": 215 }, { "group": "melee", @@ -478590,8 +489972,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 10, - "timeString": "10 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -478725,7 +490107,7 @@ "time": 13.8, "timeString": "13 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "guns", @@ -478785,7 +490167,7 @@ "time": 14.925, "timeString": "14 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -478794,8 +490176,8 @@ "caption": "Pistol Bullet", "quantity": 50, "quantityTypeId": "785728077", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, "sulfur": 125 }, @@ -478818,10 +490200,10 @@ "caption": "HV Pistol Ammo", "quantity": 50, "quantityTypeId": "-1691396643", - "time": 12.7, - "timeString": "12 sec", + "time": 8.8, + "timeString": "8 sec", "fuel": null, - "sulfur": 667 + "sulfur": 250 }, { "group": "guns", @@ -479013,7 +490395,7 @@ "time": 8.94, "timeString": "8 sec", "fuel": null, - "sulfur": 533 + "sulfur": 200 }, { "group": "melee", @@ -479062,8 +490444,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "melee", @@ -479207,7 +490589,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -479255,7 +490637,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -479531,7 +490913,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -479615,7 +490997,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -479687,7 +491069,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -479735,7 +491117,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -479783,7 +491165,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -479831,7 +491213,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -479915,7 +491297,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -479965,6 +491347,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 35, + "quantityTypeId": null, + "time": 20.9, + "timeString": "20 sec", + "fuel": 35, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -480011,7 +491417,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -480131,7 +491537,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -480167,7 +491573,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -480224,8 +491630,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 4, + "timeString": "4 sec", "fuel": null, "sulfur": null }, @@ -480359,7 +491765,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -480419,7 +491825,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -480455,7 +491861,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -480647,7 +492053,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -480732,8 +492138,8 @@ "quantityTypeId": null, "time": 8.2206420321427, "timeString": "8 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -480769,7 +492175,7 @@ "time": 52, "timeString": "52 sec", "fuel": null, - "sulfur": 180 + "sulfur": 108 }, { "group": "melee", @@ -480997,7 +492403,7 @@ "time": 42.5282, "timeString": "42 sec", "fuel": null, - "sulfur": 3200 + "sulfur": 1067 }, { "group": "guns", @@ -481045,7 +492451,7 @@ "time": 19.0641, "timeString": "19 sec", "fuel": null, - "sulfur": 1600 + "sulfur": 534 }, { "group": "explosive", @@ -481105,7 +492511,7 @@ "time": 247.5, "timeString": "4 min 7 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -481153,7 +492559,7 @@ "time": 122.9, "timeString": "2 min 2 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "melee", @@ -481621,7 +493027,7 @@ "time": 53.05, "timeString": "53 sec", "fuel": null, - "sulfur": 2666 + "sulfur": 1000 }, { "group": "guns", @@ -481657,7 +493063,7 @@ "time": 25.075, "timeString": "25 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -481777,7 +493183,7 @@ "time": 30.125, "timeString": "30 sec", "fuel": null, - "sulfur": 2800 + "sulfur": 934 }, { "group": "guns", @@ -481825,7 +493231,7 @@ "time": 15, "timeString": "15 sec", "fuel": null, - "sulfur": 1400 + "sulfur": 467 }, { "group": "melee", @@ -481921,7 +493327,7 @@ "time": 265, "timeString": "4 min 25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -481969,7 +493375,7 @@ "time": 131, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -482017,7 +493423,7 @@ "time": 47.16, "timeString": "47 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -482065,7 +493471,7 @@ "time": 23.52, "timeString": "23 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -482113,7 +493519,7 @@ "time": 22.14, "timeString": "22 sec", "fuel": null, - "sulfur": 2480 + "sulfur": 827 }, { "group": "guns", @@ -482161,7 +493567,7 @@ "time": 7.32, "timeString": "7 sec", "fuel": null, - "sulfur": 1240 + "sulfur": 414 }, { "group": "guns", @@ -482209,7 +493615,7 @@ "time": 49.35, "timeString": "49 sec", "fuel": null, - "sulfur": 3200 + "sulfur": 1067 }, { "group": "guns", @@ -482257,7 +493663,7 @@ "time": 23.05, "timeString": "23 sec", "fuel": null, - "sulfur": 1600 + "sulfur": 534 }, { "group": "guns", @@ -482389,7 +493795,7 @@ "time": 51.19, "timeString": "51 sec", "fuel": null, - "sulfur": 2373 + "sulfur": 890 }, { "group": "guns", @@ -482425,7 +493831,7 @@ "time": 24.4, "timeString": "24 sec", "fuel": null, - "sulfur": 1186 + "sulfur": 445 }, { "group": "melee", @@ -482523,6 +493929,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 102, + "quantityTypeId": null, + "time": 27.6, + "timeString": "27 sec", + "fuel": 102, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 214, + "quantityTypeId": "-1211166256", + "time": 21.3, + "timeString": "21 sec", + "fuel": null, + "sulfur": 713 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 107, + "quantityTypeId": "-1211166256", + "time": 10.6, + "timeString": "10 sec", + "fuel": null, + "sulfur": 356 + }, { "group": "explosive", "which": "both", @@ -482569,7 +494011,7 @@ "time": 48.6, "timeString": "48 sec", "fuel": null, - "sulfur": 2853 + "sulfur": 1070 }, { "group": "guns", @@ -482605,7 +494047,7 @@ "time": 22.3, "timeString": "22 sec", "fuel": null, - "sulfur": 1426 + "sulfur": 535 }, { "group": "melee", @@ -482809,7 +494251,7 @@ "time": 108.15, "timeString": "1 min 48 sec", "fuel": null, - "sulfur": 1946 + "sulfur": 730 }, { "group": "guns", @@ -482845,7 +494287,7 @@ "time": 54, "timeString": "54 sec", "fuel": null, - "sulfur": 973 + "sulfur": 365 }, { "group": "guns", @@ -482881,7 +494323,7 @@ "time": 130.2, "timeString": "2 min 10 sec", "fuel": null, - "sulfur": 3053 + "sulfur": 1145 }, { "group": "guns", @@ -482917,7 +494359,7 @@ "time": 65.1, "timeString": "1 min 5 sec", "fuel": null, - "sulfur": 1533 + "sulfur": 575 }, { "group": "melee", @@ -483020,10 +494462,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 19, + "quantity": 18, "quantityTypeId": null, - "time": 1352, - "timeString": "22 min 32 sec", + "time": 1017, + "timeString": "16 min 57 sec", "fuel": null, "sulfur": null }, @@ -483046,8 +494488,8 @@ "caption": null, "quantity": 2, "quantityTypeId": null, - "time": 135, - "timeString": "2 min 15 sec", + "time": 101, + "timeString": "1 min 41 sec", "fuel": null, "sulfur": null }, @@ -483253,7 +494695,7 @@ "time": 82.1, "timeString": "1 min 22 sec", "fuel": null, - "sulfur": 2666 + "sulfur": 1000 }, { "group": "guns", @@ -483289,7 +494731,7 @@ "time": 39.6, "timeString": "39 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -483349,7 +494791,7 @@ "time": 85.525, "timeString": "1 min 25 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -483409,7 +494851,7 @@ "time": 42.675, "timeString": "42 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -483418,8 +494860,8 @@ "caption": "Pistol Bullet", "quantity": 267, "quantityTypeId": "785728077", - "time": 69.5, - "timeString": "1 min 9 sec", + "time": 57.8, + "timeString": "57 sec", "fuel": null, "sulfur": 668 }, @@ -483430,8 +494872,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 74, "quantityTypeId": "51984655", - "time": 44, - "timeString": "44 sec", + "time": 40.1, + "timeString": "40 sec", "fuel": null, "sulfur": 616 }, @@ -483442,10 +494884,10 @@ "caption": "HV Pistol Ammo", "quantity": 267, "quantityTypeId": "-1691396643", - "time": 69.5, - "timeString": "1 min 9 sec", + "time": 57.8, + "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "guns", @@ -483454,8 +494896,8 @@ "caption": "Pistol Bullet", "quantity": 134, "quantityTypeId": "785728077", - "time": 32.8, - "timeString": "32 sec", + "time": 28.9, + "timeString": "28 sec", "fuel": null, "sulfur": 335 }, @@ -483466,8 +494908,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 58, "quantityTypeId": "51984655", - "time": 38.5, - "timeString": "38 sec", + "time": 34.6, + "timeString": "34 sec", "fuel": null, "sulfur": 483 }, @@ -483478,10 +494920,10 @@ "caption": "HV Pistol Ammo", "quantity": 134, "quantityTypeId": "-1691396643", - "time": 32.8, - "timeString": "32 sec", + "time": 28.9, + "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "guns", @@ -483829,7 +495271,7 @@ "time": 66.39, "timeString": "1 min 6 sec", "fuel": null, - "sulfur": 2853 + "sulfur": 1070 }, { "group": "guns", @@ -483865,7 +495307,7 @@ "time": 33.13, "timeString": "33 sec", "fuel": null, - "sulfur": 1426 + "sulfur": 535 }, { "group": "melee", @@ -483986,8 +495428,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -484011,7 +495453,7 @@ "time": 22, "timeString": "22 sec", "fuel": null, - "sulfur": 80 + "sulfur": 48 }, { "group": "melee", @@ -484155,7 +495597,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -484215,7 +495657,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -484503,7 +495945,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -484587,7 +496029,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -484659,7 +496101,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -484707,7 +496149,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -484755,7 +496197,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -484803,7 +496245,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -484887,7 +496329,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -484937,6 +496379,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -484983,7 +496449,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -485103,7 +496569,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -485139,7 +496605,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -485196,8 +496662,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -485331,7 +496797,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -485391,7 +496857,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -485427,7 +496893,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -485619,7 +497085,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -485704,8 +497170,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -485729,7 +497195,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -485873,7 +497339,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "explosive", @@ -485933,7 +497399,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "melee", @@ -486221,7 +497687,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -486305,7 +497771,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "melee", @@ -486377,7 +497843,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -486425,7 +497891,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -486473,7 +497939,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -486521,7 +497987,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -486605,7 +498071,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "melee", @@ -486655,6 +498121,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, { "group": "explosive", "which": null, @@ -486701,7 +498191,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -486821,7 +498311,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -486857,7 +498347,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "melee", @@ -486912,10 +498402,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -487049,7 +498539,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -487109,7 +498599,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -487118,8 +498608,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -487130,8 +498620,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -487142,10 +498632,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -487337,7 +498827,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -487422,8 +498912,8 @@ "quantityTypeId": null, "time": 88.206420321427, "timeString": "1 min 28 sec", - "fuel": 506, - "sulfur": 1220 + "fuel": 150, + "sulfur": 600 }, { "group": "explosive", @@ -487447,7 +498937,7 @@ "time": 484, "timeString": "8 min 4 sec", "fuel": null, - "sulfur": 1620 + "sulfur": 972 }, { "group": "melee", @@ -487591,7 +499081,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -487651,7 +499141,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -487939,7 +499429,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -488023,7 +499513,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -488095,7 +499585,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -488143,7 +499633,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -488191,7 +499681,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -488239,7 +499729,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -488323,7 +499813,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -488373,6 +499863,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1017, + "quantityTypeId": null, + "time": 139.5, + "timeString": "2 min 19 sec", + "fuel": 1017, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "explosive", "which": null, @@ -488419,7 +499933,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -488539,7 +500053,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -488575,7 +500089,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -488630,10 +500144,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 23, + "quantity": 15, "quantityTypeId": null, - "time": 1689, - "timeString": "28 min 9 sec", + "time": 848, + "timeString": "14 min 8 sec", "fuel": null, "sulfur": null }, @@ -488767,7 +500281,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -488827,7 +500341,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -488836,8 +500350,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -488848,8 +500362,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 631, "quantityTypeId": "51984655", - "time": 189.4, - "timeString": "3 min 9 sec", + "time": 169.9, + "timeString": "2 min 49 sec", "fuel": null, "sulfur": 5256 }, @@ -488860,10 +500374,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -489055,7 +500569,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -489140,8 +500654,8 @@ "quantityTypeId": null, "time": 129.30963048214, "timeString": "2 min 9 sec", - "fuel": 506, - "sulfur": 1220 + "fuel": 150, + "sulfur": 600 }, { "group": "explosive", @@ -489165,7 +500679,7 @@ "time": 724, "timeString": "12 min 4 sec", "fuel": null, - "sulfur": 2420 + "sulfur": 1452 }, { "group": "melee", @@ -489309,7 +500823,7 @@ "time": 408.885, "timeString": "6 min 48 sec", "fuel": null, - "sulfur": 30000 + "sulfur": 10005 }, { "group": "explosive", @@ -489369,7 +500883,7 @@ "time": 2365.1, "timeString": "39 min 25 sec", "fuel": null, - "sulfur": 18760 + "sulfur": 6256 }, { "group": "melee", @@ -489657,7 +501171,7 @@ "time": 500.725, "timeString": "8 min 20 sec", "fuel": null, - "sulfur": 24994 + "sulfur": 9375 }, { "group": "guns", @@ -489741,7 +501255,7 @@ "time": 296.875, "timeString": "4 min 56 sec", "fuel": null, - "sulfur": 26100 + "sulfur": 8704 }, { "group": "melee", @@ -489813,7 +501327,7 @@ "time": 2511, "timeString": "41 min 51 sec", "fuel": null, - "sulfur": 18760 + "sulfur": 6256 }, { "group": "guns", @@ -489861,7 +501375,7 @@ "time": 465.44, "timeString": "7 min 45 sec", "fuel": null, - "sulfur": 37500 + "sulfur": 12506 }, { "group": "guns", @@ -489909,7 +501423,7 @@ "time": 219.54, "timeString": "3 min 39 sec", "fuel": null, - "sulfur": 23080 + "sulfur": 7697 }, { "group": "guns", @@ -489957,7 +501471,7 @@ "time": 489.875, "timeString": "8 min 9 sec", "fuel": null, - "sulfur": 30000 + "sulfur": 10005 }, { "group": "guns", @@ -490041,7 +501555,7 @@ "time": 498.54, "timeString": "8 min 18 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "melee", @@ -490091,6 +501605,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1526, + "quantityTypeId": null, + "time": 204, + "timeString": "3 min 24 sec", + "fuel": 1526, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2000, + "quantityTypeId": "-1211166256", + "time": 220.3, + "timeString": "3 min 40 sec", + "fuel": null, + "sulfur": 6660 + }, { "group": "explosive", "which": null, @@ -490137,7 +501675,7 @@ "time": 457.3, "timeString": "7 min 37 sec", "fuel": null, - "sulfur": 26660 + "sulfur": 10000 }, { "group": "melee", @@ -490257,7 +501795,7 @@ "time": 1021.65, "timeString": "17 min 1 sec", "fuel": null, - "sulfur": 18182 + "sulfur": 6820 }, { "group": "guns", @@ -490293,7 +501831,7 @@ "time": 1235.925, "timeString": "20 min 35 sec", "fuel": null, - "sulfur": 28566 + "sulfur": 10715 }, { "group": "melee", @@ -490348,10 +501886,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 35, + "quantity": 22, "quantityTypeId": null, - "time": 2534, - "timeString": "42 min 14 sec", + "time": 1271, + "timeString": "21 min 11 sec", "fuel": null, "sulfur": null }, @@ -490485,7 +502023,7 @@ "time": 795.35, "timeString": "13 min 15 sec", "fuel": null, - "sulfur": 24994 + "sulfur": 9375 }, { "group": "guns", @@ -490545,7 +502083,7 @@ "time": 822.275, "timeString": "13 min 42 sec", "fuel": null, - "sulfur": 37500 + "sulfur": 12506 }, { "group": "guns", @@ -490554,8 +502092,8 @@ "caption": "Pistol Bullet", "quantity": 2500, "quantityTypeId": "785728077", - "time": 655.5, - "timeString": "10 min 55 sec", + "time": 573.6, + "timeString": "9 min 33 sec", "fuel": null, "sulfur": 6250 }, @@ -490566,8 +502104,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 947, "quantityTypeId": "51984655", - "time": 271.7, - "timeString": "4 min 31 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": 7889 }, @@ -490578,10 +502116,10 @@ "caption": "HV Pistol Ammo", "quantity": 2500, "quantityTypeId": "-1691396643", - "time": 655.5, - "timeString": "10 min 55 sec", + "time": 573.6, + "timeString": "9 min 33 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -490773,7 +502311,7 @@ "time": 643, "timeString": "10 min 43 sec", "fuel": null, - "sulfur": 26660 + "sulfur": 10000 }, { "group": "melee", @@ -490858,8 +502396,8 @@ "quantityTypeId": null, "time": 2.4661926096428, "timeString": "2 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -490883,7 +502421,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -491027,7 +502565,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -491087,7 +502625,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "melee", @@ -491375,7 +502913,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -491459,7 +502997,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "melee", @@ -491531,7 +503069,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -491579,7 +503117,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -491627,7 +503165,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -491675,7 +503213,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -491759,7 +503297,7 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -491809,6 +503347,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 20.5, + "timeString": "20 sec", + "fuel": 31, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 + }, { "group": "explosive", "which": null, @@ -491855,7 +503417,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -491975,7 +503537,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -492011,7 +503573,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "melee", @@ -492066,10 +503628,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 7, + "quantity": 5, "quantityTypeId": null, - "time": 506, - "timeString": "8 min 26 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -492203,7 +503765,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -492263,7 +503825,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -492272,8 +503834,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -492284,8 +503846,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 28, "quantityTypeId": "51984655", - "time": 31.6, - "timeString": "31 sec", + "time": 27.7, + "timeString": "27 sec", "fuel": null, "sulfur": 233 }, @@ -492296,10 +503858,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -492491,7 +504053,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -492576,8 +504138,8 @@ "quantityTypeId": null, "time": 1.6441284064285, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -492601,7 +504163,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -492745,7 +504307,7 @@ "time": 2.5327, "timeString": "2 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "explosive", @@ -492805,7 +504367,7 @@ "time": 30.3, "timeString": "30 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "melee", @@ -493093,7 +504655,7 @@ "time": 5.4875, "timeString": "5 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -493177,7 +504739,7 @@ "time": 2.125, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 120 }, { "group": "melee", @@ -493249,7 +504811,7 @@ "time": 32, "timeString": "32 sec", "fuel": null, - "sulfur": 260 + "sulfur": 87 }, { "group": "guns", @@ -493297,7 +504859,7 @@ "time": 2.88, "timeString": "2 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -493345,7 +504907,7 @@ "time": 1.8, "timeString": "1 sec", "fuel": null, - "sulfur": 320 + "sulfur": 107 }, { "group": "guns", @@ -493393,7 +504955,7 @@ "time": 3.325, "timeString": "3 sec", "fuel": null, - "sulfur": 400 + "sulfur": 133 }, { "group": "guns", @@ -493477,7 +505039,7 @@ "time": 5.54, "timeString": "5 sec", "fuel": null, - "sulfur": 307 + "sulfur": 115 }, { "group": "melee", @@ -493527,6 +505089,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 19.5, + "timeString": "19 sec", + "fuel": 21, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 27, + "quantityTypeId": "-1211166256", + "time": 2.6, + "timeString": "2 sec", + "fuel": null, + "sulfur": 90 + }, { "group": "explosive", "which": null, @@ -493573,7 +505159,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -493693,7 +505279,7 @@ "time": 13.5, "timeString": "13 sec", "fuel": null, - "sulfur": 253 + "sulfur": 95 }, { "group": "guns", @@ -493729,7 +505315,7 @@ "time": 14.575, "timeString": "14 sec", "fuel": null, - "sulfur": 387 + "sulfur": 145 }, { "group": "melee", @@ -493786,8 +505372,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 7, - "timeString": "7 sec", + "time": 5, + "timeString": "5 sec", "fuel": null, "sulfur": null }, @@ -493921,7 +505507,7 @@ "time": 9.1, "timeString": "9 sec", "fuel": null, - "sulfur": 333 + "sulfur": 125 }, { "group": "guns", @@ -493981,7 +505567,7 @@ "time": 8.425, "timeString": "8 sec", "fuel": null, - "sulfur": 500 + "sulfur": 167 }, { "group": "guns", @@ -494017,7 +505603,7 @@ "time": 7.2, "timeString": "7 sec", "fuel": null, - "sulfur": 453 + "sulfur": 170 }, { "group": "guns", @@ -494209,7 +505795,7 @@ "time": 7.25, "timeString": "7 sec", "fuel": null, - "sulfur": 360 + "sulfur": 135 }, { "group": "melee", @@ -494321,7 +505907,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -494549,7 +506135,7 @@ "time": 220415.6889, "timeString": "61 hours 13 min 35 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -494597,7 +506183,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -494657,7 +506243,7 @@ "time": 1262495, "timeString": "350 hours 41 min 35 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -494705,7 +506291,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -495113,7 +506699,7 @@ "time": 267359.45, "timeString": "74 hours 15 min 59 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -495149,7 +506735,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -495269,7 +506855,7 @@ "time": 160868.25, "timeString": "44 hours 41 min 8 sec", "fuel": null, - "sulfur": 13913060 + "sulfur": 4640006 }, { "group": "guns", @@ -495317,7 +506903,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -495413,7 +506999,7 @@ "time": 1339997, "timeString": "372 hours 13 min 17 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -495461,7 +507047,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -495509,7 +507095,7 @@ "time": 249331.92, "timeString": "69 hours 15 min 31 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -495557,7 +507143,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -495605,7 +507191,7 @@ "time": 119255.22, "timeString": "33 hours 7 min 35 sec", "fuel": null, - "sulfur": 12307700 + "sulfur": 4104618 }, { "group": "guns", @@ -495653,7 +507239,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -495701,7 +507287,7 @@ "time": 262996.75, "timeString": "73 hours 3 min 16 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -495749,7 +507335,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -495881,7 +507467,7 @@ "time": 266073.36, "timeString": "73 hours 54 min 33 sec", "fuel": null, - "sulfur": 11848890 + "sulfur": 4444445 }, { "group": "guns", @@ -495917,7 +507503,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -496015,6 +507601,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1066667, + "quantityTypeId": "-1211166256", + "time": 118753.6, + "timeString": "32 hours 59 min 13 sec", + "fuel": null, + "sulfur": 3552001 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": "hard", @@ -496049,7 +507659,7 @@ "time": 245331.1, "timeString": "68 hours 8 min 51 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -496085,7 +507695,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -496289,7 +507899,7 @@ "time": 545454, "timeString": "151 hours 30 min 54 sec", "fuel": null, - "sulfur": 9694549 + "sulfur": 3636365 }, { "group": "guns", @@ -496325,7 +507935,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -496361,7 +507971,7 @@ "time": 660713.8, "timeString": "183 hours 31 min 53 sec", "fuel": null, - "sulfur": 15234297 + "sulfur": 5714290 }, { "group": "guns", @@ -496397,7 +508007,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -496500,10 +508110,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 926, + "quantity": 893, "quantityTypeId": null, - "time": 67592, - "timeString": "18 hours 46 min 32 sec", + "time": 50892, + "timeString": "14 hours 8 min 12 sec", "fuel": null, "sulfur": null }, @@ -496524,10 +508134,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -496733,7 +508343,7 @@ "time": 424997.1, "timeString": "118 hours 3 min 17 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -496769,7 +508379,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -496829,7 +508439,7 @@ "time": 439058.1, "timeString": "121 hours 57 min 38 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -496889,7 +508499,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -496898,8 +508508,8 @@ "caption": "Pistol Bullet", "quantity": 1333334, "quantityTypeId": "785728077", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 3333335 }, @@ -496910,8 +508520,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1333334, "quantityTypeId": "51984655", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 11106672 }, @@ -496922,10 +508532,10 @@ "caption": "HV Pistol Ammo", "quantity": 1333334, "quantityTypeId": "-1691396643", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, - "sulfur": 17773342 + "sulfur": 6666670 }, { "group": "guns", @@ -496934,8 +508544,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -496946,8 +508556,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -496958,10 +508568,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -497309,7 +508919,7 @@ "time": 345065.29, "timeString": "95 hours 51 min 5 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -497345,7 +508955,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -497491,7 +509101,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -497719,7 +509329,7 @@ "time": 220415.6889, "timeString": "61 hours 13 min 35 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -497767,7 +509377,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -497827,7 +509437,7 @@ "time": 1262495, "timeString": "350 hours 41 min 35 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -497875,7 +509485,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -498283,7 +509893,7 @@ "time": 267359.45, "timeString": "74 hours 15 min 59 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -498319,7 +509929,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -498439,7 +510049,7 @@ "time": 160868.25, "timeString": "44 hours 41 min 8 sec", "fuel": null, - "sulfur": 13913060 + "sulfur": 4640006 }, { "group": "guns", @@ -498487,7 +510097,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -498583,7 +510193,7 @@ "time": 1339997, "timeString": "372 hours 13 min 17 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -498631,7 +510241,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -498679,7 +510289,7 @@ "time": 249331.92, "timeString": "69 hours 15 min 31 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -498727,7 +510337,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -498775,7 +510385,7 @@ "time": 119255.22, "timeString": "33 hours 7 min 35 sec", "fuel": null, - "sulfur": 12307700 + "sulfur": 4104618 }, { "group": "guns", @@ -498823,7 +510433,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -498871,7 +510481,7 @@ "time": 262996.75, "timeString": "73 hours 3 min 16 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -498919,7 +510529,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -499051,7 +510661,7 @@ "time": 266073.36, "timeString": "73 hours 54 min 33 sec", "fuel": null, - "sulfur": 11848890 + "sulfur": 4444445 }, { "group": "guns", @@ -499087,7 +510697,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -499185,6 +510795,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1066667, + "quantityTypeId": "-1211166256", + "time": 118753.6, + "timeString": "32 hours 59 min 13 sec", + "fuel": null, + "sulfur": 3552001 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": "hard", @@ -499219,7 +510853,7 @@ "time": 245331.1, "timeString": "68 hours 8 min 51 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -499255,7 +510889,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -499459,7 +511093,7 @@ "time": 545454, "timeString": "151 hours 30 min 54 sec", "fuel": null, - "sulfur": 9694549 + "sulfur": 3636365 }, { "group": "guns", @@ -499495,7 +511129,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -499531,7 +511165,7 @@ "time": 660713.8, "timeString": "183 hours 31 min 53 sec", "fuel": null, - "sulfur": 15234297 + "sulfur": 5714290 }, { "group": "guns", @@ -499567,7 +511201,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -499670,10 +511304,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 926, + "quantity": 893, "quantityTypeId": null, - "time": 67592, - "timeString": "18 hours 46 min 32 sec", + "time": 50892, + "timeString": "14 hours 8 min 12 sec", "fuel": null, "sulfur": null }, @@ -499694,10 +511328,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -499903,7 +511537,7 @@ "time": 424997.1, "timeString": "118 hours 3 min 17 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -499939,7 +511573,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -499999,7 +511633,7 @@ "time": 439058.1, "timeString": "121 hours 57 min 38 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -500059,7 +511693,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -500068,8 +511702,8 @@ "caption": "Pistol Bullet", "quantity": 1333334, "quantityTypeId": "785728077", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 3333335 }, @@ -500080,8 +511714,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1333334, "quantityTypeId": "51984655", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 11106672 }, @@ -500092,10 +511726,10 @@ "caption": "HV Pistol Ammo", "quantity": 1333334, "quantityTypeId": "-1691396643", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, - "sulfur": 17773342 + "sulfur": 6666670 }, { "group": "guns", @@ -500104,8 +511738,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -500116,8 +511750,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -500128,10 +511762,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -500479,7 +512113,7 @@ "time": 345065.29, "timeString": "95 hours 51 min 5 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -500515,7 +512149,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -500649,7 +512283,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -500793,7 +512427,7 @@ "time": 220415.6889, "timeString": "61 hours 13 min 35 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "explosive", @@ -500853,7 +512487,7 @@ "time": 1262495, "timeString": "350 hours 41 min 35 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "melee", @@ -501081,7 +512715,7 @@ "time": 267359.45, "timeString": "74 hours 15 min 59 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -501165,7 +512799,7 @@ "time": 160868.25, "timeString": "44 hours 41 min 8 sec", "fuel": null, - "sulfur": 13913060 + "sulfur": 4640006 }, { "group": "melee", @@ -501237,7 +512871,7 @@ "time": 1339997, "timeString": "372 hours 13 min 17 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -501285,7 +512919,7 @@ "time": 249331.92, "timeString": "69 hours 15 min 31 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -501333,7 +512967,7 @@ "time": 119255.22, "timeString": "33 hours 7 min 35 sec", "fuel": null, - "sulfur": 12307700 + "sulfur": 4104618 }, { "group": "guns", @@ -501381,7 +513015,7 @@ "time": 262996.75, "timeString": "73 hours 3 min 16 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -501465,7 +513099,7 @@ "time": 266073.36, "timeString": "73 hours 54 min 33 sec", "fuel": null, - "sulfur": 11848890 + "sulfur": 4444445 }, { "group": "melee", @@ -501515,6 +513149,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1066667, + "quantityTypeId": "-1211166256", + "time": 118753.6, + "timeString": "32 hours 59 min 13 sec", + "fuel": null, + "sulfur": 3552001 + }, { "group": "guns", "which": null, @@ -501549,7 +513195,7 @@ "time": 245331.1, "timeString": "68 hours 8 min 51 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "melee", @@ -501669,7 +513315,7 @@ "time": 545454, "timeString": "151 hours 30 min 54 sec", "fuel": null, - "sulfur": 9694549 + "sulfur": 3636365 }, { "group": "guns", @@ -501705,7 +513351,7 @@ "time": 660713.8, "timeString": "183 hours 31 min 53 sec", "fuel": null, - "sulfur": 15234297 + "sulfur": 5714290 }, { "group": "melee", @@ -501760,10 +513406,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 926, + "quantity": 893, "quantityTypeId": null, - "time": 67592, - "timeString": "18 hours 46 min 32 sec", + "time": 50892, + "timeString": "14 hours 8 min 12 sec", "fuel": null, "sulfur": null }, @@ -501897,7 +513543,7 @@ "time": 424997.1, "timeString": "118 hours 3 min 17 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -501957,7 +513603,7 @@ "time": 439058.1, "timeString": "121 hours 57 min 38 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -501966,8 +513612,8 @@ "caption": "Pistol Bullet", "quantity": 1333334, "quantityTypeId": "785728077", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 3333335 }, @@ -501978,8 +513624,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1333334, "quantityTypeId": "51984655", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 11106672 }, @@ -501990,10 +513636,10 @@ "caption": "HV Pistol Ammo", "quantity": 1333334, "quantityTypeId": "-1691396643", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, - "sulfur": 17773342 + "sulfur": 6666670 }, { "group": "guns", @@ -502185,7 +513831,7 @@ "time": 345065.29, "timeString": "95 hours 51 min 5 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "melee", @@ -502295,7 +513941,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -502523,7 +514169,7 @@ "time": 220415.6889, "timeString": "61 hours 13 min 35 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -502571,7 +514217,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -502631,7 +514277,7 @@ "time": 1262495, "timeString": "350 hours 41 min 35 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -502679,7 +514325,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -503087,7 +514733,7 @@ "time": 267359.45, "timeString": "74 hours 15 min 59 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -503123,7 +514769,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -503243,7 +514889,7 @@ "time": 160868.25, "timeString": "44 hours 41 min 8 sec", "fuel": null, - "sulfur": 13913060 + "sulfur": 4640006 }, { "group": "guns", @@ -503291,7 +514937,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -503387,7 +515033,7 @@ "time": 1339997, "timeString": "372 hours 13 min 17 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -503435,7 +515081,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -503483,7 +515129,7 @@ "time": 249331.92, "timeString": "69 hours 15 min 31 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -503531,7 +515177,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -503579,7 +515225,7 @@ "time": 119255.22, "timeString": "33 hours 7 min 35 sec", "fuel": null, - "sulfur": 12307700 + "sulfur": 4104618 }, { "group": "guns", @@ -503627,7 +515273,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -503675,7 +515321,7 @@ "time": 262996.75, "timeString": "73 hours 3 min 16 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -503723,7 +515369,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -503855,7 +515501,7 @@ "time": 266073.36, "timeString": "73 hours 54 min 33 sec", "fuel": null, - "sulfur": 11848890 + "sulfur": 4444445 }, { "group": "guns", @@ -503891,7 +515537,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -503989,6 +515635,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1066667, + "quantityTypeId": "-1211166256", + "time": 118753.6, + "timeString": "32 hours 59 min 13 sec", + "fuel": null, + "sulfur": 3552001 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": "hard", @@ -504023,7 +515693,7 @@ "time": 245331.1, "timeString": "68 hours 8 min 51 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -504059,7 +515729,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -504263,7 +515933,7 @@ "time": 545454, "timeString": "151 hours 30 min 54 sec", "fuel": null, - "sulfur": 9694549 + "sulfur": 3636365 }, { "group": "guns", @@ -504299,7 +515969,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -504335,7 +516005,7 @@ "time": 660713.8, "timeString": "183 hours 31 min 53 sec", "fuel": null, - "sulfur": 15234297 + "sulfur": 5714290 }, { "group": "guns", @@ -504371,7 +516041,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -504474,10 +516144,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 926, + "quantity": 893, "quantityTypeId": null, - "time": 67592, - "timeString": "18 hours 46 min 32 sec", + "time": 50892, + "timeString": "14 hours 8 min 12 sec", "fuel": null, "sulfur": null }, @@ -504498,10 +516168,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -504707,7 +516377,7 @@ "time": 424997.1, "timeString": "118 hours 3 min 17 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -504743,7 +516413,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -504803,7 +516473,7 @@ "time": 439058.1, "timeString": "121 hours 57 min 38 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -504863,7 +516533,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -504872,8 +516542,8 @@ "caption": "Pistol Bullet", "quantity": 1333334, "quantityTypeId": "785728077", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 3333335 }, @@ -504884,8 +516554,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1333334, "quantityTypeId": "51984655", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 11106672 }, @@ -504896,10 +516566,10 @@ "caption": "HV Pistol Ammo", "quantity": 1333334, "quantityTypeId": "-1691396643", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, - "sulfur": 17773342 + "sulfur": 6666670 }, { "group": "guns", @@ -504908,8 +516578,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -504920,8 +516590,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -504932,10 +516602,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -505283,7 +516953,7 @@ "time": 345065.29, "timeString": "95 hours 51 min 5 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -505319,7 +516989,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -505453,7 +517123,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -505597,7 +517267,7 @@ "time": 220415.6889, "timeString": "61 hours 13 min 35 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "explosive", @@ -505657,7 +517327,7 @@ "time": 1262495, "timeString": "350 hours 41 min 35 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "melee", @@ -505885,7 +517555,7 @@ "time": 267359.45, "timeString": "74 hours 15 min 59 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -505969,7 +517639,7 @@ "time": 160868.25, "timeString": "44 hours 41 min 8 sec", "fuel": null, - "sulfur": 13913060 + "sulfur": 4640006 }, { "group": "melee", @@ -506041,7 +517711,7 @@ "time": 1339997, "timeString": "372 hours 13 min 17 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -506089,7 +517759,7 @@ "time": 249331.92, "timeString": "69 hours 15 min 31 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -506137,7 +517807,7 @@ "time": 119255.22, "timeString": "33 hours 7 min 35 sec", "fuel": null, - "sulfur": 12307700 + "sulfur": 4104618 }, { "group": "guns", @@ -506185,7 +517855,7 @@ "time": 262996.75, "timeString": "73 hours 3 min 16 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -506269,7 +517939,7 @@ "time": 266073.36, "timeString": "73 hours 54 min 33 sec", "fuel": null, - "sulfur": 11848890 + "sulfur": 4444445 }, { "group": "melee", @@ -506319,6 +517989,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1066667, + "quantityTypeId": "-1211166256", + "time": 118753.6, + "timeString": "32 hours 59 min 13 sec", + "fuel": null, + "sulfur": 3552001 + }, { "group": "guns", "which": null, @@ -506353,7 +518035,7 @@ "time": 245331.1, "timeString": "68 hours 8 min 51 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "melee", @@ -506473,7 +518155,7 @@ "time": 545454, "timeString": "151 hours 30 min 54 sec", "fuel": null, - "sulfur": 9694549 + "sulfur": 3636365 }, { "group": "guns", @@ -506509,7 +518191,7 @@ "time": 660713.8, "timeString": "183 hours 31 min 53 sec", "fuel": null, - "sulfur": 15234297 + "sulfur": 5714290 }, { "group": "melee", @@ -506564,10 +518246,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 926, + "quantity": 893, "quantityTypeId": null, - "time": 67592, - "timeString": "18 hours 46 min 32 sec", + "time": 50892, + "timeString": "14 hours 8 min 12 sec", "fuel": null, "sulfur": null }, @@ -506701,7 +518383,7 @@ "time": 424997.1, "timeString": "118 hours 3 min 17 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -506761,7 +518443,7 @@ "time": 439058.1, "timeString": "121 hours 57 min 38 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -506770,8 +518452,8 @@ "caption": "Pistol Bullet", "quantity": 1333334, "quantityTypeId": "785728077", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 3333335 }, @@ -506782,8 +518464,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1333334, "quantityTypeId": "51984655", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 11106672 }, @@ -506794,10 +518476,10 @@ "caption": "HV Pistol Ammo", "quantity": 1333334, "quantityTypeId": "-1691396643", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, - "sulfur": 17773342 + "sulfur": 6666670 }, { "group": "guns", @@ -506989,7 +518671,7 @@ "time": 345065.29, "timeString": "95 hours 51 min 5 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "melee", @@ -507099,7 +518781,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -507327,7 +519009,7 @@ "time": 220415.6889, "timeString": "61 hours 13 min 35 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -507375,7 +519057,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -507435,7 +519117,7 @@ "time": 1262495, "timeString": "350 hours 41 min 35 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -507483,7 +519165,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -507891,7 +519573,7 @@ "time": 267359.45, "timeString": "74 hours 15 min 59 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -507927,7 +519609,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -508047,7 +519729,7 @@ "time": 160868.25, "timeString": "44 hours 41 min 8 sec", "fuel": null, - "sulfur": 13913060 + "sulfur": 4640006 }, { "group": "guns", @@ -508095,7 +519777,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -508191,7 +519873,7 @@ "time": 1339997, "timeString": "372 hours 13 min 17 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -508239,7 +519921,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -508287,7 +519969,7 @@ "time": 249331.92, "timeString": "69 hours 15 min 31 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -508335,7 +520017,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -508383,7 +520065,7 @@ "time": 119255.22, "timeString": "33 hours 7 min 35 sec", "fuel": null, - "sulfur": 12307700 + "sulfur": 4104618 }, { "group": "guns", @@ -508431,7 +520113,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -508479,7 +520161,7 @@ "time": 262996.75, "timeString": "73 hours 3 min 16 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -508527,7 +520209,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -508659,7 +520341,7 @@ "time": 266073.36, "timeString": "73 hours 54 min 33 sec", "fuel": null, - "sulfur": 11848890 + "sulfur": 4444445 }, { "group": "guns", @@ -508695,7 +520377,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -508793,6 +520475,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1066667, + "quantityTypeId": "-1211166256", + "time": 118753.6, + "timeString": "32 hours 59 min 13 sec", + "fuel": null, + "sulfur": 3552001 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": "hard", @@ -508827,7 +520533,7 @@ "time": 245331.1, "timeString": "68 hours 8 min 51 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -508863,7 +520569,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -509067,7 +520773,7 @@ "time": 545454, "timeString": "151 hours 30 min 54 sec", "fuel": null, - "sulfur": 9694549 + "sulfur": 3636365 }, { "group": "guns", @@ -509103,7 +520809,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -509139,7 +520845,7 @@ "time": 660713.8, "timeString": "183 hours 31 min 53 sec", "fuel": null, - "sulfur": 15234297 + "sulfur": 5714290 }, { "group": "guns", @@ -509175,7 +520881,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -509278,10 +520984,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 926, + "quantity": 893, "quantityTypeId": null, - "time": 67592, - "timeString": "18 hours 46 min 32 sec", + "time": 50892, + "timeString": "14 hours 8 min 12 sec", "fuel": null, "sulfur": null }, @@ -509302,10 +521008,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -509511,7 +521217,7 @@ "time": 424997.1, "timeString": "118 hours 3 min 17 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -509547,7 +521253,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -509607,7 +521313,7 @@ "time": 439058.1, "timeString": "121 hours 57 min 38 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -509667,7 +521373,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -509676,8 +521382,8 @@ "caption": "Pistol Bullet", "quantity": 1333334, "quantityTypeId": "785728077", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 3333335 }, @@ -509688,8 +521394,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1333334, "quantityTypeId": "51984655", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 11106672 }, @@ -509700,10 +521406,10 @@ "caption": "HV Pistol Ammo", "quantity": 1333334, "quantityTypeId": "-1691396643", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, - "sulfur": 17773342 + "sulfur": 6666670 }, { "group": "guns", @@ -509712,8 +521418,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -509724,8 +521430,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -509736,10 +521442,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -510087,7 +521793,7 @@ "time": 345065.29, "timeString": "95 hours 51 min 5 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -510123,7 +521829,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -510269,7 +521975,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -510497,7 +522203,7 @@ "time": 220415.6889, "timeString": "61 hours 13 min 35 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -510545,7 +522251,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -510605,7 +522311,7 @@ "time": 1262495, "timeString": "350 hours 41 min 35 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -510653,7 +522359,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -511061,7 +522767,7 @@ "time": 267359.45, "timeString": "74 hours 15 min 59 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -511097,7 +522803,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -511217,7 +522923,7 @@ "time": 160868.25, "timeString": "44 hours 41 min 8 sec", "fuel": null, - "sulfur": 13913060 + "sulfur": 4640006 }, { "group": "guns", @@ -511265,7 +522971,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -511361,7 +523067,7 @@ "time": 1339997, "timeString": "372 hours 13 min 17 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -511409,7 +523115,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -511457,7 +523163,7 @@ "time": 249331.92, "timeString": "69 hours 15 min 31 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -511505,7 +523211,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -511553,7 +523259,7 @@ "time": 119255.22, "timeString": "33 hours 7 min 35 sec", "fuel": null, - "sulfur": 12307700 + "sulfur": 4104618 }, { "group": "guns", @@ -511601,7 +523307,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -511649,7 +523355,7 @@ "time": 262996.75, "timeString": "73 hours 3 min 16 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -511697,7 +523403,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -511829,7 +523535,7 @@ "time": 266073.36, "timeString": "73 hours 54 min 33 sec", "fuel": null, - "sulfur": 11848890 + "sulfur": 4444445 }, { "group": "guns", @@ -511865,7 +523571,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -511963,6 +523669,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1066667, + "quantityTypeId": "-1211166256", + "time": 118753.6, + "timeString": "32 hours 59 min 13 sec", + "fuel": null, + "sulfur": 3552001 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": "hard", @@ -511997,7 +523727,7 @@ "time": 245331.1, "timeString": "68 hours 8 min 51 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -512033,7 +523763,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -512237,7 +523967,7 @@ "time": 545454, "timeString": "151 hours 30 min 54 sec", "fuel": null, - "sulfur": 9694549 + "sulfur": 3636365 }, { "group": "guns", @@ -512273,7 +524003,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -512309,7 +524039,7 @@ "time": 660713.8, "timeString": "183 hours 31 min 53 sec", "fuel": null, - "sulfur": 15234297 + "sulfur": 5714290 }, { "group": "guns", @@ -512345,7 +524075,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -512448,10 +524178,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 926, + "quantity": 893, "quantityTypeId": null, - "time": 67592, - "timeString": "18 hours 46 min 32 sec", + "time": 50892, + "timeString": "14 hours 8 min 12 sec", "fuel": null, "sulfur": null }, @@ -512472,10 +524202,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -512681,7 +524411,7 @@ "time": 424997.1, "timeString": "118 hours 3 min 17 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -512717,7 +524447,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -512777,7 +524507,7 @@ "time": 439058.1, "timeString": "121 hours 57 min 38 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -512837,7 +524567,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -512846,8 +524576,8 @@ "caption": "Pistol Bullet", "quantity": 1333334, "quantityTypeId": "785728077", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 3333335 }, @@ -512858,8 +524588,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1333334, "quantityTypeId": "51984655", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 11106672 }, @@ -512870,10 +524600,10 @@ "caption": "HV Pistol Ammo", "quantity": 1333334, "quantityTypeId": "-1691396643", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, - "sulfur": 17773342 + "sulfur": 6666670 }, { "group": "guns", @@ -512882,8 +524612,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -512894,8 +524624,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -512906,10 +524636,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -513257,7 +524987,7 @@ "time": 345065.29, "timeString": "95 hours 51 min 5 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -513293,7 +525023,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -513439,7 +525169,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -513667,7 +525397,7 @@ "time": 220415.6889, "timeString": "61 hours 13 min 35 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -513715,7 +525445,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -513775,7 +525505,7 @@ "time": 1262495, "timeString": "350 hours 41 min 35 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -513823,7 +525553,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -514231,7 +525961,7 @@ "time": 267359.45, "timeString": "74 hours 15 min 59 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -514267,7 +525997,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -514387,7 +526117,7 @@ "time": 160868.25, "timeString": "44 hours 41 min 8 sec", "fuel": null, - "sulfur": 13913060 + "sulfur": 4640006 }, { "group": "guns", @@ -514435,7 +526165,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -514531,7 +526261,7 @@ "time": 1339997, "timeString": "372 hours 13 min 17 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -514579,7 +526309,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -514627,7 +526357,7 @@ "time": 249331.92, "timeString": "69 hours 15 min 31 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -514675,7 +526405,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -514723,7 +526453,7 @@ "time": 119255.22, "timeString": "33 hours 7 min 35 sec", "fuel": null, - "sulfur": 12307700 + "sulfur": 4104618 }, { "group": "guns", @@ -514771,7 +526501,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -514819,7 +526549,7 @@ "time": 262996.75, "timeString": "73 hours 3 min 16 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -514867,7 +526597,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -514999,7 +526729,7 @@ "time": 266073.36, "timeString": "73 hours 54 min 33 sec", "fuel": null, - "sulfur": 11848890 + "sulfur": 4444445 }, { "group": "guns", @@ -515035,7 +526765,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -515133,6 +526863,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1066667, + "quantityTypeId": "-1211166256", + "time": 118753.6, + "timeString": "32 hours 59 min 13 sec", + "fuel": null, + "sulfur": 3552001 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": "hard", @@ -515167,7 +526921,7 @@ "time": 245331.1, "timeString": "68 hours 8 min 51 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -515203,7 +526957,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -515407,7 +527161,7 @@ "time": 545454, "timeString": "151 hours 30 min 54 sec", "fuel": null, - "sulfur": 9694549 + "sulfur": 3636365 }, { "group": "guns", @@ -515443,7 +527197,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -515479,7 +527233,7 @@ "time": 660713.8, "timeString": "183 hours 31 min 53 sec", "fuel": null, - "sulfur": 15234297 + "sulfur": 5714290 }, { "group": "guns", @@ -515515,7 +527269,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -515618,10 +527372,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 926, + "quantity": 893, "quantityTypeId": null, - "time": 67592, - "timeString": "18 hours 46 min 32 sec", + "time": 50892, + "timeString": "14 hours 8 min 12 sec", "fuel": null, "sulfur": null }, @@ -515642,10 +527396,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -515851,7 +527605,7 @@ "time": 424997.1, "timeString": "118 hours 3 min 17 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -515887,7 +527641,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -515947,7 +527701,7 @@ "time": 439058.1, "timeString": "121 hours 57 min 38 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -516007,7 +527761,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -516016,8 +527770,8 @@ "caption": "Pistol Bullet", "quantity": 1333334, "quantityTypeId": "785728077", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 3333335 }, @@ -516028,8 +527782,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1333334, "quantityTypeId": "51984655", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 11106672 }, @@ -516040,10 +527794,10 @@ "caption": "HV Pistol Ammo", "quantity": 1333334, "quantityTypeId": "-1691396643", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, - "sulfur": 17773342 + "sulfur": 6666670 }, { "group": "guns", @@ -516052,8 +527806,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -516064,8 +527818,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -516076,10 +527830,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -516427,7 +528181,7 @@ "time": 345065.29, "timeString": "95 hours 51 min 5 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -516463,7 +528217,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -516597,7 +528351,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -516741,7 +528495,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -516801,7 +528555,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -517029,7 +528783,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -517113,7 +528867,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -517185,7 +528939,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -517233,7 +528987,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -517281,7 +529035,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -517329,7 +529083,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -517413,7 +529167,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -517463,6 +529217,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": null, @@ -517497,7 +529263,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -517617,7 +529383,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -517653,7 +529419,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -517708,10 +529474,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -517845,7 +529611,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -517905,7 +529671,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -517914,8 +529680,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -517926,8 +529692,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -517938,10 +529704,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -518133,7 +529899,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -518243,7 +530009,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -518471,7 +530237,7 @@ "time": 220415.6889, "timeString": "61 hours 13 min 35 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -518519,7 +530285,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -518579,7 +530345,7 @@ "time": 1262495, "timeString": "350 hours 41 min 35 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -518627,7 +530393,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -519035,7 +530801,7 @@ "time": 267359.45, "timeString": "74 hours 15 min 59 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -519071,7 +530837,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -519191,7 +530957,7 @@ "time": 160868.25, "timeString": "44 hours 41 min 8 sec", "fuel": null, - "sulfur": 13913060 + "sulfur": 4640006 }, { "group": "guns", @@ -519239,7 +531005,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -519335,7 +531101,7 @@ "time": 1339997, "timeString": "372 hours 13 min 17 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -519383,7 +531149,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -519431,7 +531197,7 @@ "time": 249331.92, "timeString": "69 hours 15 min 31 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -519479,7 +531245,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -519527,7 +531293,7 @@ "time": 119255.22, "timeString": "33 hours 7 min 35 sec", "fuel": null, - "sulfur": 12307700 + "sulfur": 4104618 }, { "group": "guns", @@ -519575,7 +531341,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -519623,7 +531389,7 @@ "time": 262996.75, "timeString": "73 hours 3 min 16 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -519671,7 +531437,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -519803,7 +531569,7 @@ "time": 266073.36, "timeString": "73 hours 54 min 33 sec", "fuel": null, - "sulfur": 11848890 + "sulfur": 4444445 }, { "group": "guns", @@ -519839,7 +531605,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -519937,6 +531703,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1066667, + "quantityTypeId": "-1211166256", + "time": 118753.6, + "timeString": "32 hours 59 min 13 sec", + "fuel": null, + "sulfur": 3552001 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": "hard", @@ -519971,7 +531761,7 @@ "time": 245331.1, "timeString": "68 hours 8 min 51 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -520007,7 +531797,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -520211,7 +532001,7 @@ "time": 545454, "timeString": "151 hours 30 min 54 sec", "fuel": null, - "sulfur": 9694549 + "sulfur": 3636365 }, { "group": "guns", @@ -520247,7 +532037,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -520283,7 +532073,7 @@ "time": 660713.8, "timeString": "183 hours 31 min 53 sec", "fuel": null, - "sulfur": 15234297 + "sulfur": 5714290 }, { "group": "guns", @@ -520319,7 +532109,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -520422,10 +532212,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 926, + "quantity": 893, "quantityTypeId": null, - "time": 67592, - "timeString": "18 hours 46 min 32 sec", + "time": 50892, + "timeString": "14 hours 8 min 12 sec", "fuel": null, "sulfur": null }, @@ -520446,10 +532236,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -520655,7 +532445,7 @@ "time": 424997.1, "timeString": "118 hours 3 min 17 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -520691,7 +532481,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -520751,7 +532541,7 @@ "time": 439058.1, "timeString": "121 hours 57 min 38 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -520811,7 +532601,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -520820,8 +532610,8 @@ "caption": "Pistol Bullet", "quantity": 1333334, "quantityTypeId": "785728077", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 3333335 }, @@ -520832,8 +532622,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1333334, "quantityTypeId": "51984655", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 11106672 }, @@ -520844,10 +532634,10 @@ "caption": "HV Pistol Ammo", "quantity": 1333334, "quantityTypeId": "-1691396643", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, - "sulfur": 17773342 + "sulfur": 6666670 }, { "group": "guns", @@ -520856,8 +532646,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -520868,8 +532658,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -520880,10 +532670,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -521231,7 +533021,7 @@ "time": 345065.29, "timeString": "95 hours 51 min 5 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -521267,7 +533057,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -521413,7 +533203,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -521641,7 +533431,7 @@ "time": 220415.6889, "timeString": "61 hours 13 min 35 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -521689,7 +533479,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -521749,7 +533539,7 @@ "time": 1262495, "timeString": "350 hours 41 min 35 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -521797,7 +533587,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -522205,7 +533995,7 @@ "time": 267359.45, "timeString": "74 hours 15 min 59 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -522241,7 +534031,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -522361,7 +534151,7 @@ "time": 160868.25, "timeString": "44 hours 41 min 8 sec", "fuel": null, - "sulfur": 13913060 + "sulfur": 4640006 }, { "group": "guns", @@ -522409,7 +534199,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -522505,7 +534295,7 @@ "time": 1339997, "timeString": "372 hours 13 min 17 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -522553,7 +534343,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -522601,7 +534391,7 @@ "time": 249331.92, "timeString": "69 hours 15 min 31 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -522649,7 +534439,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -522697,7 +534487,7 @@ "time": 119255.22, "timeString": "33 hours 7 min 35 sec", "fuel": null, - "sulfur": 12307700 + "sulfur": 4104618 }, { "group": "guns", @@ -522745,7 +534535,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -522793,7 +534583,7 @@ "time": 262996.75, "timeString": "73 hours 3 min 16 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -522841,7 +534631,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -522973,7 +534763,7 @@ "time": 266073.36, "timeString": "73 hours 54 min 33 sec", "fuel": null, - "sulfur": 11848890 + "sulfur": 4444445 }, { "group": "guns", @@ -523009,7 +534799,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -523107,6 +534897,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1066667, + "quantityTypeId": "-1211166256", + "time": 118753.6, + "timeString": "32 hours 59 min 13 sec", + "fuel": null, + "sulfur": 3552001 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": "hard", @@ -523141,7 +534955,7 @@ "time": 245331.1, "timeString": "68 hours 8 min 51 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -523177,7 +534991,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -523381,7 +535195,7 @@ "time": 545454, "timeString": "151 hours 30 min 54 sec", "fuel": null, - "sulfur": 9694549 + "sulfur": 3636365 }, { "group": "guns", @@ -523417,7 +535231,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -523453,7 +535267,7 @@ "time": 660713.8, "timeString": "183 hours 31 min 53 sec", "fuel": null, - "sulfur": 15234297 + "sulfur": 5714290 }, { "group": "guns", @@ -523489,7 +535303,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -523592,10 +535406,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 926, + "quantity": 893, "quantityTypeId": null, - "time": 67592, - "timeString": "18 hours 46 min 32 sec", + "time": 50892, + "timeString": "14 hours 8 min 12 sec", "fuel": null, "sulfur": null }, @@ -523616,10 +535430,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -523825,7 +535639,7 @@ "time": 424997.1, "timeString": "118 hours 3 min 17 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -523861,7 +535675,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -523921,7 +535735,7 @@ "time": 439058.1, "timeString": "121 hours 57 min 38 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -523981,7 +535795,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -523990,8 +535804,8 @@ "caption": "Pistol Bullet", "quantity": 1333334, "quantityTypeId": "785728077", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 3333335 }, @@ -524002,8 +535816,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1333334, "quantityTypeId": "51984655", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 11106672 }, @@ -524014,10 +535828,10 @@ "caption": "HV Pistol Ammo", "quantity": 1333334, "quantityTypeId": "-1691396643", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, - "sulfur": 17773342 + "sulfur": 6666670 }, { "group": "guns", @@ -524026,8 +535840,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -524038,8 +535852,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -524050,10 +535864,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -524401,7 +536215,7 @@ "time": 345065.29, "timeString": "95 hours 51 min 5 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -524437,7 +536251,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -524571,7 +536385,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -524715,7 +536529,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -524775,7 +536589,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -525003,7 +536817,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -525087,7 +536901,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -525159,7 +536973,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -525207,7 +537021,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -525255,7 +537069,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -525303,7 +537117,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -525387,7 +537201,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -525437,6 +537251,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": null, @@ -525471,7 +537297,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -525591,7 +537417,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -525627,7 +537453,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -525682,10 +537508,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -525819,7 +537645,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -525879,7 +537705,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -525888,8 +537714,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -525900,8 +537726,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -525912,10 +537738,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -526107,7 +537933,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -526205,7 +538031,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -526349,7 +538175,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -526409,7 +538235,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -526637,7 +538463,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -526721,7 +538547,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -526793,7 +538619,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -526841,7 +538667,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -526889,7 +538715,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -526937,7 +538763,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -527021,7 +538847,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -527071,6 +538897,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": null, @@ -527105,7 +538943,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -527225,7 +539063,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -527261,7 +539099,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -527316,10 +539154,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -527453,7 +539291,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -527513,7 +539351,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -527522,8 +539360,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -527534,8 +539372,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -527546,10 +539384,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -527741,7 +539579,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -527839,7 +539677,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -527983,7 +539821,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -528043,7 +539881,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -528271,7 +540109,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -528355,7 +540193,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -528427,7 +540265,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -528475,7 +540313,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -528523,7 +540361,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -528571,7 +540409,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -528655,7 +540493,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -528705,6 +540543,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": null, @@ -528739,7 +540589,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -528859,7 +540709,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -528895,7 +540745,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -528950,10 +540800,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -529087,7 +540937,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -529147,7 +540997,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -529156,8 +541006,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -529168,8 +541018,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -529180,10 +541030,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -529375,7 +541225,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -529473,7 +541323,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -529617,7 +541467,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -529677,7 +541527,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -529905,7 +541755,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -529989,7 +541839,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -530061,7 +541911,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -530109,7 +541959,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -530157,7 +542007,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -530205,7 +542055,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -530289,7 +542139,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -530339,6 +542189,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": null, @@ -530373,7 +542235,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -530493,7 +542355,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -530529,7 +542391,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -530584,10 +542446,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -530721,7 +542583,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -530781,7 +542643,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -530790,8 +542652,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -530802,8 +542664,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -530814,10 +542676,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -531009,7 +542871,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -531119,7 +542981,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -531347,7 +543209,7 @@ "time": 220415.6889, "timeString": "61 hours 13 min 35 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -531395,7 +543257,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -531455,7 +543317,7 @@ "time": 1262495, "timeString": "350 hours 41 min 35 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -531503,7 +543365,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -531911,7 +543773,7 @@ "time": 267359.45, "timeString": "74 hours 15 min 59 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -531947,7 +543809,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -532067,7 +543929,7 @@ "time": 160868.25, "timeString": "44 hours 41 min 8 sec", "fuel": null, - "sulfur": 13913060 + "sulfur": 4640006 }, { "group": "guns", @@ -532115,7 +543977,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -532211,7 +544073,7 @@ "time": 1339997, "timeString": "372 hours 13 min 17 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -532259,7 +544121,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -532307,7 +544169,7 @@ "time": 249331.92, "timeString": "69 hours 15 min 31 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -532355,7 +544217,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -532403,7 +544265,7 @@ "time": 119255.22, "timeString": "33 hours 7 min 35 sec", "fuel": null, - "sulfur": 12307700 + "sulfur": 4104618 }, { "group": "guns", @@ -532451,7 +544313,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -532499,7 +544361,7 @@ "time": 262996.75, "timeString": "73 hours 3 min 16 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -532547,7 +544409,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -532679,7 +544541,7 @@ "time": 266073.36, "timeString": "73 hours 54 min 33 sec", "fuel": null, - "sulfur": 11848890 + "sulfur": 4444445 }, { "group": "guns", @@ -532715,7 +544577,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -532813,6 +544675,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1066667, + "quantityTypeId": "-1211166256", + "time": 118753.6, + "timeString": "32 hours 59 min 13 sec", + "fuel": null, + "sulfur": 3552001 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": "hard", @@ -532847,7 +544733,7 @@ "time": 245331.1, "timeString": "68 hours 8 min 51 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -532883,7 +544769,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -533087,7 +544973,7 @@ "time": 545454, "timeString": "151 hours 30 min 54 sec", "fuel": null, - "sulfur": 9694549 + "sulfur": 3636365 }, { "group": "guns", @@ -533123,7 +545009,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -533159,7 +545045,7 @@ "time": 660713.8, "timeString": "183 hours 31 min 53 sec", "fuel": null, - "sulfur": 15234297 + "sulfur": 5714290 }, { "group": "guns", @@ -533195,7 +545081,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -533298,10 +545184,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 926, + "quantity": 893, "quantityTypeId": null, - "time": 67592, - "timeString": "18 hours 46 min 32 sec", + "time": 50892, + "timeString": "14 hours 8 min 12 sec", "fuel": null, "sulfur": null }, @@ -533322,10 +545208,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -533531,7 +545417,7 @@ "time": 424997.1, "timeString": "118 hours 3 min 17 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -533567,7 +545453,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -533627,7 +545513,7 @@ "time": 439058.1, "timeString": "121 hours 57 min 38 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -533687,7 +545573,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -533696,8 +545582,8 @@ "caption": "Pistol Bullet", "quantity": 1333334, "quantityTypeId": "785728077", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 3333335 }, @@ -533708,8 +545594,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1333334, "quantityTypeId": "51984655", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 11106672 }, @@ -533720,10 +545606,10 @@ "caption": "HV Pistol Ammo", "quantity": 1333334, "quantityTypeId": "-1691396643", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, - "sulfur": 17773342 + "sulfur": 6666670 }, { "group": "guns", @@ -533732,8 +545618,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -533744,8 +545630,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -533756,10 +545642,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -534107,7 +545993,7 @@ "time": 345065.29, "timeString": "95 hours 51 min 5 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -534143,7 +546029,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -534277,7 +546163,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -534421,7 +546307,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -534481,7 +546367,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -534709,7 +546595,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -534793,7 +546679,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -534865,7 +546751,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -534913,7 +546799,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -534961,7 +546847,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -535009,7 +546895,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -535093,7 +546979,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -535143,6 +547029,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": null, @@ -535177,7 +547075,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -535297,7 +547195,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -535333,7 +547231,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -535388,10 +547286,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -535525,7 +547423,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -535585,7 +547483,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -535594,8 +547492,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -535606,8 +547504,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -535618,10 +547516,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -535813,7 +547711,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -535923,7 +547821,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -536151,7 +548049,7 @@ "time": 220415.6889, "timeString": "61 hours 13 min 35 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -536199,7 +548097,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -536259,7 +548157,7 @@ "time": 1262495, "timeString": "350 hours 41 min 35 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -536307,7 +548205,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -536715,7 +548613,7 @@ "time": 267359.45, "timeString": "74 hours 15 min 59 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -536751,7 +548649,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -536871,7 +548769,7 @@ "time": 160868.25, "timeString": "44 hours 41 min 8 sec", "fuel": null, - "sulfur": 13913060 + "sulfur": 4640006 }, { "group": "guns", @@ -536919,7 +548817,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -537015,7 +548913,7 @@ "time": 1339997, "timeString": "372 hours 13 min 17 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -537063,7 +548961,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -537111,7 +549009,7 @@ "time": 249331.92, "timeString": "69 hours 15 min 31 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -537159,7 +549057,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -537207,7 +549105,7 @@ "time": 119255.22, "timeString": "33 hours 7 min 35 sec", "fuel": null, - "sulfur": 12307700 + "sulfur": 4104618 }, { "group": "guns", @@ -537255,7 +549153,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -537303,7 +549201,7 @@ "time": 262996.75, "timeString": "73 hours 3 min 16 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -537351,7 +549249,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -537483,7 +549381,7 @@ "time": 266073.36, "timeString": "73 hours 54 min 33 sec", "fuel": null, - "sulfur": 11848890 + "sulfur": 4444445 }, { "group": "guns", @@ -537519,7 +549417,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -537617,6 +549515,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1066667, + "quantityTypeId": "-1211166256", + "time": 118753.6, + "timeString": "32 hours 59 min 13 sec", + "fuel": null, + "sulfur": 3552001 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": "hard", @@ -537651,7 +549573,7 @@ "time": 245331.1, "timeString": "68 hours 8 min 51 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -537687,7 +549609,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -537891,7 +549813,7 @@ "time": 545454, "timeString": "151 hours 30 min 54 sec", "fuel": null, - "sulfur": 9694549 + "sulfur": 3636365 }, { "group": "guns", @@ -537927,7 +549849,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -537963,7 +549885,7 @@ "time": 660713.8, "timeString": "183 hours 31 min 53 sec", "fuel": null, - "sulfur": 15234297 + "sulfur": 5714290 }, { "group": "guns", @@ -537999,7 +549921,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -538102,10 +550024,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 926, + "quantity": 893, "quantityTypeId": null, - "time": 67592, - "timeString": "18 hours 46 min 32 sec", + "time": 50892, + "timeString": "14 hours 8 min 12 sec", "fuel": null, "sulfur": null }, @@ -538126,10 +550048,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -538335,7 +550257,7 @@ "time": 424997.1, "timeString": "118 hours 3 min 17 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -538371,7 +550293,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -538431,7 +550353,7 @@ "time": 439058.1, "timeString": "121 hours 57 min 38 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -538491,7 +550413,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -538500,8 +550422,8 @@ "caption": "Pistol Bullet", "quantity": 1333334, "quantityTypeId": "785728077", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 3333335 }, @@ -538512,8 +550434,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1333334, "quantityTypeId": "51984655", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 11106672 }, @@ -538524,10 +550446,10 @@ "caption": "HV Pistol Ammo", "quantity": 1333334, "quantityTypeId": "-1691396643", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, - "sulfur": 17773342 + "sulfur": 6666670 }, { "group": "guns", @@ -538536,8 +550458,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -538548,8 +550470,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -538560,10 +550482,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -538911,7 +550833,7 @@ "time": 345065.29, "timeString": "95 hours 51 min 5 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -538947,7 +550869,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -539081,7 +551003,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -539225,7 +551147,7 @@ "time": 220415.6889, "timeString": "61 hours 13 min 35 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "explosive", @@ -539285,7 +551207,7 @@ "time": 1262495, "timeString": "350 hours 41 min 35 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "melee", @@ -539513,7 +551435,7 @@ "time": 267359.45, "timeString": "74 hours 15 min 59 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -539597,7 +551519,7 @@ "time": 160868.25, "timeString": "44 hours 41 min 8 sec", "fuel": null, - "sulfur": 13913060 + "sulfur": 4640006 }, { "group": "melee", @@ -539669,7 +551591,7 @@ "time": 1339997, "timeString": "372 hours 13 min 17 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -539717,7 +551639,7 @@ "time": 249331.92, "timeString": "69 hours 15 min 31 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -539765,7 +551687,7 @@ "time": 119255.22, "timeString": "33 hours 7 min 35 sec", "fuel": null, - "sulfur": 12307700 + "sulfur": 4104618 }, { "group": "guns", @@ -539813,7 +551735,7 @@ "time": 262996.75, "timeString": "73 hours 3 min 16 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -539897,7 +551819,7 @@ "time": 266073.36, "timeString": "73 hours 54 min 33 sec", "fuel": null, - "sulfur": 11848890 + "sulfur": 4444445 }, { "group": "melee", @@ -539947,6 +551869,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1066667, + "quantityTypeId": "-1211166256", + "time": 118753.6, + "timeString": "32 hours 59 min 13 sec", + "fuel": null, + "sulfur": 3552001 + }, { "group": "guns", "which": null, @@ -539981,7 +551915,7 @@ "time": 245331.1, "timeString": "68 hours 8 min 51 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "melee", @@ -540101,7 +552035,7 @@ "time": 545454, "timeString": "151 hours 30 min 54 sec", "fuel": null, - "sulfur": 9694549 + "sulfur": 3636365 }, { "group": "guns", @@ -540137,7 +552071,7 @@ "time": 660713.8, "timeString": "183 hours 31 min 53 sec", "fuel": null, - "sulfur": 15234297 + "sulfur": 5714290 }, { "group": "melee", @@ -540192,10 +552126,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 926, + "quantity": 893, "quantityTypeId": null, - "time": 67592, - "timeString": "18 hours 46 min 32 sec", + "time": 50892, + "timeString": "14 hours 8 min 12 sec", "fuel": null, "sulfur": null }, @@ -540329,7 +552263,7 @@ "time": 424997.1, "timeString": "118 hours 3 min 17 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -540389,7 +552323,7 @@ "time": 439058.1, "timeString": "121 hours 57 min 38 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -540398,8 +552332,8 @@ "caption": "Pistol Bullet", "quantity": 1333334, "quantityTypeId": "785728077", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 3333335 }, @@ -540410,8 +552344,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1333334, "quantityTypeId": "51984655", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 11106672 }, @@ -540422,10 +552356,10 @@ "caption": "HV Pistol Ammo", "quantity": 1333334, "quantityTypeId": "-1691396643", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, - "sulfur": 17773342 + "sulfur": 6666670 }, { "group": "guns", @@ -540617,7 +552551,7 @@ "time": 345065.29, "timeString": "95 hours 51 min 5 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "melee", @@ -540727,7 +552661,7 @@ "time": 2398, "timeString": "39 min 58 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 4800 }, { "group": "melee", @@ -540955,7 +552889,7 @@ "time": 220415.6889, "timeString": "61 hours 13 min 35 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -541003,7 +552937,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -541063,7 +552997,7 @@ "time": 1262495, "timeString": "350 hours 41 min 35 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -541111,7 +553045,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -541519,7 +553453,7 @@ "time": 267359.45, "timeString": "74 hours 15 min 59 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -541555,7 +553489,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -541675,7 +553609,7 @@ "time": 160868.25, "timeString": "44 hours 41 min 8 sec", "fuel": null, - "sulfur": 13913060 + "sulfur": 4640006 }, { "group": "guns", @@ -541723,7 +553657,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -541819,7 +553753,7 @@ "time": 1339997, "timeString": "372 hours 13 min 17 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -541867,7 +553801,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -541915,7 +553849,7 @@ "time": 249331.92, "timeString": "69 hours 15 min 31 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -541963,7 +553897,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -542011,7 +553945,7 @@ "time": 119255.22, "timeString": "33 hours 7 min 35 sec", "fuel": null, - "sulfur": 12307700 + "sulfur": 4104618 }, { "group": "guns", @@ -542059,7 +553993,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -542107,7 +554041,7 @@ "time": 262996.75, "timeString": "73 hours 3 min 16 sec", "fuel": null, - "sulfur": 16000000 + "sulfur": 5336000 }, { "group": "guns", @@ -542155,7 +554089,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -542287,7 +554221,7 @@ "time": 266073.36, "timeString": "73 hours 54 min 33 sec", "fuel": null, - "sulfur": 11848890 + "sulfur": 4444445 }, { "group": "guns", @@ -542323,7 +554257,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -542421,6 +554355,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1066667, + "quantityTypeId": "-1211166256", + "time": 118753.6, + "timeString": "32 hours 59 min 13 sec", + "fuel": null, + "sulfur": 3552001 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": "hard", @@ -542455,7 +554413,7 @@ "time": 245331.1, "timeString": "68 hours 8 min 51 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -542491,7 +554449,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -542695,7 +554653,7 @@ "time": 545454, "timeString": "151 hours 30 min 54 sec", "fuel": null, - "sulfur": 9694549 + "sulfur": 3636365 }, { "group": "guns", @@ -542731,7 +554689,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -542767,7 +554725,7 @@ "time": 660713.8, "timeString": "183 hours 31 min 53 sec", "fuel": null, - "sulfur": 15234297 + "sulfur": 5714290 }, { "group": "guns", @@ -542803,7 +554761,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -542906,10 +554864,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 926, + "quantity": 893, "quantityTypeId": null, - "time": 67592, - "timeString": "18 hours 46 min 32 sec", + "time": 50892, + "timeString": "14 hours 8 min 12 sec", "fuel": null, "sulfur": null }, @@ -542930,10 +554888,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 92, + "quantity": 88, "quantityTypeId": null, - "time": 6758, - "timeString": "1 hour 52 min 38 sec", + "time": 5087, + "timeString": "1 hour 24 min 47 sec", "fuel": null, "sulfur": null }, @@ -543139,7 +555097,7 @@ "time": 424997.1, "timeString": "118 hours 3 min 17 sec", "fuel": null, - "sulfur": 13330000 + "sulfur": 5000000 }, { "group": "guns", @@ -543175,7 +555133,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -543235,7 +555193,7 @@ "time": 439058.1, "timeString": "121 hours 57 min 38 sec", "fuel": null, - "sulfur": 20000000 + "sulfur": 6670000 }, { "group": "guns", @@ -543295,7 +555253,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -543304,8 +555262,8 @@ "caption": "Pistol Bullet", "quantity": 1333334, "quantityTypeId": "785728077", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 3333335 }, @@ -543316,8 +555274,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1333334, "quantityTypeId": "51984655", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, "sulfur": 11106672 }, @@ -543328,10 +555286,10 @@ "caption": "HV Pistol Ammo", "quantity": 1333334, "quantityTypeId": "-1691396643", - "time": 349997.8, - "timeString": "97 hours 13 min 17 sec", + "time": 306664.9, + "timeString": "85 hours 11 min 4 sec", "fuel": null, - "sulfur": 17773342 + "sulfur": 6666670 }, { "group": "guns", @@ -543340,8 +555298,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -543352,8 +555310,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -543364,10 +555322,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -543715,7 +555673,7 @@ "time": 345065.29, "timeString": "95 hours 51 min 5 sec", "fuel": null, - "sulfur": 14218671 + "sulfur": 5333335 }, { "group": "guns", @@ -543751,7 +555709,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -543897,7 +555855,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -544125,7 +556083,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -544161,7 +556119,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -544221,7 +556179,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -544269,7 +556227,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -544677,7 +556635,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -544713,7 +556671,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -544833,7 +556791,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "guns", @@ -544869,7 +556827,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -544965,7 +556923,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -545013,7 +556971,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -545061,7 +557019,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -545109,7 +557067,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -545157,7 +557115,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -545205,7 +557163,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -545253,7 +557211,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -545289,7 +557247,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -545421,7 +557379,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "guns", @@ -545457,7 +557415,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -545555,6 +557513,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": "hard", @@ -545589,7 +557571,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -545625,7 +557607,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -545829,7 +557811,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -545865,7 +557847,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -545901,7 +557883,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "guns", @@ -545937,7 +557919,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -546040,10 +558022,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 463, + "quantity": 447, "quantityTypeId": null, - "time": 33796, - "timeString": "9 hours 23 min 16 sec", + "time": 25446, + "timeString": "7 hours 4 min 6 sec", "fuel": null, "sulfur": null }, @@ -546064,10 +558046,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -546273,7 +558255,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -546309,7 +558291,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -546369,7 +558351,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -546429,7 +558411,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -546438,8 +558420,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -546450,8 +558432,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -546462,10 +558444,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -546474,8 +558456,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -546486,8 +558468,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -546498,10 +558480,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -546849,7 +558831,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -546885,7 +558867,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -547031,7 +559013,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -547259,7 +559241,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -547295,7 +559277,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -547355,7 +559337,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -547403,7 +559385,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -547811,7 +559793,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -547847,7 +559829,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -547967,7 +559949,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "guns", @@ -548003,7 +559985,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -548099,7 +560081,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -548147,7 +560129,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -548195,7 +560177,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -548243,7 +560225,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -548291,7 +560273,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -548339,7 +560321,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -548387,7 +560369,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -548423,7 +560405,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -548555,7 +560537,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "guns", @@ -548591,7 +560573,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -548689,6 +560671,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": "hard", @@ -548723,7 +560729,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -548759,7 +560765,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -548963,7 +560969,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -548999,7 +561005,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -549035,7 +561041,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "guns", @@ -549071,7 +561077,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -549174,10 +561180,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 463, + "quantity": 447, "quantityTypeId": null, - "time": 33796, - "timeString": "9 hours 23 min 16 sec", + "time": 25446, + "timeString": "7 hours 4 min 6 sec", "fuel": null, "sulfur": null }, @@ -549198,10 +561204,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -549407,7 +561413,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -549443,7 +561449,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -549503,7 +561509,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -549563,7 +561569,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -549572,8 +561578,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -549584,8 +561590,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -549596,10 +561602,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -549608,8 +561614,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -549620,8 +561626,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -549632,10 +561638,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -549983,7 +561989,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -550019,7 +562025,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -550153,7 +562159,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -550297,7 +562303,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -550357,7 +562363,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -550585,7 +562591,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -550669,7 +562675,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -550741,7 +562747,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -550789,7 +562795,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -550837,7 +562843,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -550885,7 +562891,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -550969,7 +562975,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -551019,6 +563025,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": null, @@ -551053,7 +563071,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -551173,7 +563191,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -551209,7 +563227,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -551264,10 +563282,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 463, + "quantity": 447, "quantityTypeId": null, - "time": 33796, - "timeString": "9 hours 23 min 16 sec", + "time": 25446, + "timeString": "7 hours 4 min 6 sec", "fuel": null, "sulfur": null }, @@ -551401,7 +563419,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -551461,7 +563479,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -551470,8 +563488,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -551482,8 +563500,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -551494,10 +563512,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -551689,7 +563707,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -551799,7 +563817,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -552027,7 +564045,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -552075,7 +564093,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -552135,7 +564153,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -552183,7 +564201,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -552591,7 +564609,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -552627,7 +564645,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -552747,7 +564765,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "guns", @@ -552795,7 +564813,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -552891,7 +564909,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -552939,7 +564957,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -552987,7 +565005,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -553035,7 +565053,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -553083,7 +565101,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -553131,7 +565149,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -553179,7 +565197,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -553227,7 +565245,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -553359,7 +565377,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "guns", @@ -553395,7 +565413,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -553493,6 +565511,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": "hard", @@ -553527,7 +565569,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -553563,7 +565605,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -553767,7 +565809,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -553803,7 +565845,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -553839,7 +565881,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "guns", @@ -553875,7 +565917,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -553978,10 +566020,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 463, + "quantity": 447, "quantityTypeId": null, - "time": 33796, - "timeString": "9 hours 23 min 16 sec", + "time": 25446, + "timeString": "7 hours 4 min 6 sec", "fuel": null, "sulfur": null }, @@ -554002,10 +566044,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -554211,7 +566253,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -554247,7 +566289,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -554307,7 +566349,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -554367,7 +566409,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -554376,8 +566418,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -554388,8 +566430,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -554400,10 +566442,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -554412,8 +566454,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -554424,8 +566466,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -554436,10 +566478,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -554787,7 +566829,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -554823,7 +566865,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -554957,7 +566999,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -555101,7 +567143,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -555161,7 +567203,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -555389,7 +567431,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -555473,7 +567515,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -555545,7 +567587,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -555593,7 +567635,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -555641,7 +567683,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -555689,7 +567731,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -555773,7 +567815,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -555823,6 +567865,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": null, @@ -555857,7 +567911,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -555977,7 +568031,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -556013,7 +568067,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -556068,10 +568122,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 463, + "quantity": 447, "quantityTypeId": null, - "time": 33796, - "timeString": "9 hours 23 min 16 sec", + "time": 25446, + "timeString": "7 hours 4 min 6 sec", "fuel": null, "sulfur": null }, @@ -556205,7 +568259,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -556265,7 +568319,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -556274,8 +568328,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -556286,8 +568340,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -556298,10 +568352,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -556493,7 +568547,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -556603,7 +568657,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -556831,7 +568885,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -556879,7 +568933,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -556939,7 +568993,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -556987,7 +569041,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -557395,7 +569449,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -557431,7 +569485,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -557551,7 +569605,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "guns", @@ -557599,7 +569653,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -557695,7 +569749,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -557743,7 +569797,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -557791,7 +569845,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -557839,7 +569893,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -557887,7 +569941,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -557935,7 +569989,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -557983,7 +570037,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -558031,7 +570085,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -558163,7 +570217,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "guns", @@ -558199,7 +570253,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -558297,6 +570351,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": "hard", @@ -558331,7 +570409,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -558367,7 +570445,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -558571,7 +570649,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -558607,7 +570685,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -558643,7 +570721,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "guns", @@ -558679,7 +570757,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -558782,10 +570860,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 463, + "quantity": 447, "quantityTypeId": null, - "time": 33796, - "timeString": "9 hours 23 min 16 sec", + "time": 25446, + "timeString": "7 hours 4 min 6 sec", "fuel": null, "sulfur": null }, @@ -558806,10 +570884,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -559015,7 +571093,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -559051,7 +571129,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -559111,7 +571189,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -559171,7 +571249,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -559180,8 +571258,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -559192,8 +571270,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -559204,10 +571282,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -559216,8 +571294,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -559228,8 +571306,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -559240,10 +571318,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -559591,7 +571669,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -559627,7 +571705,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -559773,7 +571851,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -560001,7 +572079,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -560037,7 +572115,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -560097,7 +572175,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -560145,7 +572223,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -560553,7 +572631,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -560589,7 +572667,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -560709,7 +572787,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "guns", @@ -560745,7 +572823,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -560841,7 +572919,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -560889,7 +572967,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -560937,7 +573015,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -560985,7 +573063,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -561033,7 +573111,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -561081,7 +573159,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -561129,7 +573207,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -561165,7 +573243,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -561297,7 +573375,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "guns", @@ -561333,7 +573411,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -561431,6 +573509,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": "hard", @@ -561465,7 +573567,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -561501,7 +573603,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -561705,7 +573807,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -561741,7 +573843,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -561777,7 +573879,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "guns", @@ -561813,7 +573915,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -561916,10 +574018,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 463, + "quantity": 447, "quantityTypeId": null, - "time": 33796, - "timeString": "9 hours 23 min 16 sec", + "time": 25446, + "timeString": "7 hours 4 min 6 sec", "fuel": null, "sulfur": null }, @@ -561940,10 +574042,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -562149,7 +574251,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -562185,7 +574287,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -562245,7 +574347,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -562305,7 +574407,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -562314,8 +574416,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -562326,8 +574428,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -562338,10 +574440,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -562350,8 +574452,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -562362,8 +574464,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -562374,10 +574476,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -562725,7 +574827,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -562761,7 +574863,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -562907,7 +575009,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -563135,7 +575237,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -563171,7 +575273,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -563231,7 +575333,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -563279,7 +575381,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -563687,7 +575789,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -563723,7 +575825,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -563843,7 +575945,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "guns", @@ -563879,7 +575981,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -563975,7 +576077,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -564023,7 +576125,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -564071,7 +576173,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -564119,7 +576221,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -564167,7 +576269,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -564215,7 +576317,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -564263,7 +576365,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -564299,7 +576401,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -564431,7 +576533,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "guns", @@ -564467,7 +576569,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -564565,6 +576667,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": "hard", @@ -564599,7 +576725,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -564635,7 +576761,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -564839,7 +576965,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -564875,7 +577001,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -564911,7 +577037,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "guns", @@ -564947,7 +577073,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -565050,10 +577176,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 463, + "quantity": 447, "quantityTypeId": null, - "time": 33796, - "timeString": "9 hours 23 min 16 sec", + "time": 25446, + "timeString": "7 hours 4 min 6 sec", "fuel": null, "sulfur": null }, @@ -565074,10 +577200,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -565283,7 +577409,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -565319,7 +577445,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -565379,7 +577505,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -565439,7 +577565,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -565448,8 +577574,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -565460,8 +577586,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -565472,10 +577598,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -565484,8 +577610,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -565496,8 +577622,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -565508,10 +577634,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -565859,7 +577985,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -565895,7 +578021,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -566029,7 +578155,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -566173,7 +578299,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -566233,7 +578359,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -566461,7 +578587,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -566545,7 +578671,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -566617,7 +578743,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -566665,7 +578791,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -566713,7 +578839,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -566761,7 +578887,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -566845,7 +578971,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -566895,6 +579021,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": null, @@ -566929,7 +579067,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -567049,7 +579187,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -567085,7 +579223,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -567140,10 +579278,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -567277,7 +579415,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -567337,7 +579475,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -567346,8 +579484,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -567358,8 +579496,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -567370,10 +579508,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -567565,7 +579703,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -567675,7 +579813,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -567903,7 +580041,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -567939,7 +580077,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -567999,7 +580137,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -568047,7 +580185,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -568455,7 +580593,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -568491,7 +580629,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -568611,7 +580749,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "guns", @@ -568647,7 +580785,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -568743,7 +580881,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -568791,7 +580929,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -568839,7 +580977,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -568887,7 +581025,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -568935,7 +581073,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -568983,7 +581121,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -569031,7 +581169,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -569067,7 +581205,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -569199,7 +581337,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "guns", @@ -569235,7 +581373,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -569333,6 +581471,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": "hard", @@ -569367,7 +581529,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -569403,7 +581565,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -569607,7 +581769,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -569643,7 +581805,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -569679,7 +581841,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "guns", @@ -569715,7 +581877,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -569818,10 +581980,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 463, + "quantity": 447, "quantityTypeId": null, - "time": 33796, - "timeString": "9 hours 23 min 16 sec", + "time": 25446, + "timeString": "7 hours 4 min 6 sec", "fuel": null, "sulfur": null }, @@ -569842,10 +582004,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -570051,7 +582213,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -570087,7 +582249,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -570147,7 +582309,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -570207,7 +582369,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -570216,8 +582378,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -570228,8 +582390,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -570240,10 +582402,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -570252,8 +582414,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -570264,8 +582426,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -570276,10 +582438,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -570627,7 +582789,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -570663,7 +582825,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -570809,7 +582971,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -571037,7 +583199,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -571073,7 +583235,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -571133,7 +583295,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -571181,7 +583343,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -571589,7 +583751,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -571625,7 +583787,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -571745,7 +583907,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "guns", @@ -571781,7 +583943,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -571877,7 +584039,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -571925,7 +584087,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -571973,7 +584135,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -572021,7 +584183,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -572069,7 +584231,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -572117,7 +584279,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -572165,7 +584327,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -572201,7 +584363,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -572333,7 +584495,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "guns", @@ -572369,7 +584531,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -572467,6 +584629,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": "hard", @@ -572501,7 +584687,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -572537,7 +584723,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -572741,7 +584927,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -572777,7 +584963,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -572813,7 +584999,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "guns", @@ -572849,7 +585035,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -572952,10 +585138,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 463, + "quantity": 447, "quantityTypeId": null, - "time": 33796, - "timeString": "9 hours 23 min 16 sec", + "time": 25446, + "timeString": "7 hours 4 min 6 sec", "fuel": null, "sulfur": null }, @@ -572976,10 +585162,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -573185,7 +585371,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -573221,7 +585407,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -573281,7 +585467,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -573341,7 +585527,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -573350,8 +585536,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -573362,8 +585548,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -573374,10 +585560,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -573386,8 +585572,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -573398,8 +585584,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -573410,10 +585596,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -573761,7 +585947,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -573797,7 +585983,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -573931,7 +586117,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -574075,7 +586261,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -574135,7 +586321,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -574363,7 +586549,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -574447,7 +586633,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -574519,7 +586705,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -574567,7 +586753,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -574615,7 +586801,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -574663,7 +586849,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -574747,7 +586933,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -574797,6 +586983,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": null, @@ -574831,7 +587029,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -574951,7 +587149,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -574987,7 +587185,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -575042,10 +587240,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -575179,7 +587377,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -575239,7 +587437,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -575248,8 +587446,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -575260,8 +587458,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -575272,10 +587470,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -575467,7 +587665,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -575565,7 +587763,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -575709,7 +587907,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -575769,7 +587967,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -575997,7 +588195,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -576081,7 +588279,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -576153,7 +588351,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -576201,7 +588399,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -576249,7 +588447,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -576297,7 +588495,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -576381,7 +588579,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -576431,6 +588629,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": null, @@ -576465,7 +588675,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -576585,7 +588795,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -576621,7 +588831,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -576676,10 +588886,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -576813,7 +589023,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -576873,7 +589083,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -576882,8 +589092,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -576894,8 +589104,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -576906,10 +589116,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -577101,7 +589311,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -577199,7 +589409,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -577343,7 +589553,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -577403,7 +589613,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -577631,7 +589841,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -577715,7 +589925,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -577787,7 +589997,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -577835,7 +590045,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -577883,7 +590093,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -577931,7 +590141,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -578015,7 +590225,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -578065,6 +590275,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": null, @@ -578099,7 +590321,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -578219,7 +590441,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -578255,7 +590477,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -578310,10 +590532,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -578447,7 +590669,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -578507,7 +590729,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -578516,8 +590738,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -578528,8 +590750,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -578540,10 +590762,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -578735,7 +590957,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -578833,7 +591055,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -578977,7 +591199,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -579037,7 +591259,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -579265,7 +591487,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -579349,7 +591571,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -579421,7 +591643,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -579469,7 +591691,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -579517,7 +591739,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -579565,7 +591787,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -579649,7 +591871,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -579699,6 +591921,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": null, @@ -579733,7 +591967,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -579853,7 +592087,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -579889,7 +592123,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -579944,10 +592178,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -580081,7 +592315,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -580141,7 +592375,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -580150,8 +592384,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -580162,8 +592396,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -580174,10 +592408,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -580369,7 +592603,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -580479,7 +592713,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -580707,7 +592941,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -580743,7 +592977,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -580803,7 +593037,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -580851,7 +593085,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -581259,7 +593493,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -581295,7 +593529,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -581415,7 +593649,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "guns", @@ -581451,7 +593685,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -581547,7 +593781,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -581595,7 +593829,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -581643,7 +593877,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -581691,7 +593925,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -581739,7 +593973,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -581787,7 +594021,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -581835,7 +594069,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -581871,7 +594105,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -582003,7 +594237,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "guns", @@ -582039,7 +594273,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -582137,6 +594371,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": "hard", @@ -582171,7 +594429,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -582207,7 +594465,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -582411,7 +594669,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -582447,7 +594705,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -582483,7 +594741,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "guns", @@ -582519,7 +594777,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -582622,10 +594880,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 463, + "quantity": 447, "quantityTypeId": null, - "time": 33796, - "timeString": "9 hours 23 min 16 sec", + "time": 25446, + "timeString": "7 hours 4 min 6 sec", "fuel": null, "sulfur": null }, @@ -582646,10 +594904,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -582855,7 +595113,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -582891,7 +595149,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -582951,7 +595209,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -583011,7 +595269,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -583020,8 +595278,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -583032,8 +595290,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -583044,10 +595302,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -583056,8 +595314,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -583068,8 +595326,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -583080,10 +595338,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -583431,7 +595689,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -583467,7 +595725,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -583601,7 +595859,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -583745,7 +596003,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -583805,7 +596063,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -584033,7 +596291,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -584117,7 +596375,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -584189,7 +596447,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -584237,7 +596495,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -584285,7 +596543,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -584333,7 +596591,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -584417,7 +596675,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -584467,6 +596725,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": null, @@ -584501,7 +596771,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -584621,7 +596891,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -584657,7 +596927,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -584712,10 +596982,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -584849,7 +597119,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -584909,7 +597179,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -584918,8 +597188,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -584930,8 +597200,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -584942,10 +597212,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -585137,7 +597407,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -585247,7 +597517,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -585475,7 +597745,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -585511,7 +597781,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -585571,7 +597841,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -585619,7 +597889,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -586027,7 +598297,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -586063,7 +598333,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -586183,7 +598453,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "guns", @@ -586219,7 +598489,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -586315,7 +598585,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -586363,7 +598633,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -586411,7 +598681,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -586459,7 +598729,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -586507,7 +598777,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -586555,7 +598825,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -586603,7 +598873,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -586639,7 +598909,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -586771,7 +599041,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "guns", @@ -586807,7 +599077,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -586905,6 +599175,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": "hard", @@ -586939,7 +599233,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -586975,7 +599269,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -587179,7 +599473,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -587215,7 +599509,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -587251,7 +599545,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "guns", @@ -587287,7 +599581,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -587390,10 +599684,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 463, + "quantity": 447, "quantityTypeId": null, - "time": 33796, - "timeString": "9 hours 23 min 16 sec", + "time": 25446, + "timeString": "7 hours 4 min 6 sec", "fuel": null, "sulfur": null }, @@ -587414,10 +599708,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -587623,7 +599917,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -587659,7 +599953,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -587719,7 +600013,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -587779,7 +600073,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -587788,8 +600082,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -587800,8 +600094,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -587812,10 +600106,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -587824,8 +600118,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -587836,8 +600130,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -587848,10 +600142,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -588199,7 +600493,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -588235,7 +600529,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -588369,7 +600663,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -588513,7 +600807,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "explosive", @@ -588573,7 +600867,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "melee", @@ -588801,7 +601095,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -588885,7 +601179,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "melee", @@ -588957,7 +601251,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -589005,7 +601299,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -589053,7 +601347,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -589101,7 +601395,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -589185,7 +601479,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "melee", @@ -589235,6 +601529,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, { "group": "guns", "which": null, @@ -589269,7 +601575,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -589389,7 +601695,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -589425,7 +601731,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "melee", @@ -589480,10 +601786,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 463, + "quantity": 447, "quantityTypeId": null, - "time": 33796, - "timeString": "9 hours 23 min 16 sec", + "time": 25446, + "timeString": "7 hours 4 min 6 sec", "fuel": null, "sulfur": null }, @@ -589617,7 +601923,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -589677,7 +601983,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -589686,8 +601992,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -589698,8 +602004,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -589710,10 +602016,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -589905,7 +602211,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "melee", @@ -590015,7 +602321,7 @@ "time": 1198, "timeString": "19 min 58 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 2400 }, { "group": "melee", @@ -590243,7 +602549,7 @@ "time": 110207.7778, "timeString": "30 hours 36 min 47 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -590279,7 +602585,7 @@ "time": 55101.6889, "timeString": "15 hours 18 min 21 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "explosive", @@ -590339,7 +602645,7 @@ "time": 631245, "timeString": "175 hours 20 min 45 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -590387,7 +602693,7 @@ "time": 315620, "timeString": "87 hours 40 min 20 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "melee", @@ -590795,7 +603101,7 @@ "time": 133678.275, "timeString": "37 hours 7 min 58 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -590831,7 +603137,7 @@ "time": 66837.6875, "timeString": "18 hours 33 min 57 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -590951,7 +603257,7 @@ "time": 80434.125, "timeString": "22 hours 20 min 34 sec", "fuel": null, - "sulfur": 6956540 + "sulfur": 2320006 }, { "group": "guns", @@ -590987,7 +603293,7 @@ "time": 40213.875, "timeString": "11 hours 10 min 13 sec", "fuel": null, - "sulfur": 3478280 + "sulfur": 1160006 }, { "group": "melee", @@ -591083,7 +603389,7 @@ "time": 669997, "timeString": "186 hours 6 min 37 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -591131,7 +603437,7 @@ "time": 334997, "timeString": "93 hours 3 min 17 sec", "fuel": null, - "sulfur": 2500000 + "sulfur": 833750 }, { "group": "guns", @@ -591179,7 +603485,7 @@ "time": 124663.96, "timeString": "34 hours 37 min 43 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -591227,7 +603533,7 @@ "time": 62331.92, "timeString": "17 hours 18 min 51 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -591275,7 +603581,7 @@ "time": 59623.92, "timeString": "16 hours 33 min 43 sec", "fuel": null, - "sulfur": 6153860 + "sulfur": 2052312 }, { "group": "guns", @@ -591323,7 +603629,7 @@ "time": 29811.96, "timeString": "8 hours 16 min 51 sec", "fuel": null, - "sulfur": 3076940 + "sulfur": 1026159 }, { "group": "guns", @@ -591371,7 +603677,7 @@ "time": 131496.75, "timeString": "36 hours 31 min 36 sec", "fuel": null, - "sulfur": 8000000 + "sulfur": 2668000 }, { "group": "guns", @@ -591407,7 +603713,7 @@ "time": 65746.75, "timeString": "18 hours 15 min 46 sec", "fuel": null, - "sulfur": 4000000 + "sulfur": 1334000 }, { "group": "guns", @@ -591539,7 +603845,7 @@ "time": 133035.56, "timeString": "36 hours 57 min 15 sec", "fuel": null, - "sulfur": 5924452 + "sulfur": 2222225 }, { "group": "guns", @@ -591575,7 +603881,7 @@ "time": 66516.66, "timeString": "18 hours 28 min 36 sec", "fuel": null, - "sulfur": 2962233 + "sulfur": 1111115 }, { "group": "melee", @@ -591673,6 +603979,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 533334, + "quantityTypeId": "-1211166256", + "time": 59375.1, + "timeString": "16 hours 29 min 35 sec", + "fuel": null, + "sulfur": 1776002 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 266667, + "quantityTypeId": "-1211166256", + "time": 29685.8, + "timeString": "8 hours 14 min 45 sec", + "fuel": null, + "sulfur": 888001 + }, { "group": "guns", "which": "hard", @@ -591707,7 +604037,7 @@ "time": 122663.6, "timeString": "34 hours 4 min 23 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -591743,7 +604073,7 @@ "time": 61329.8, "timeString": "17 hours 2 min 9 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -591947,7 +604277,7 @@ "time": 272727, "timeString": "75 hours 45 min 27 sec", "fuel": null, - "sulfur": 4847281 + "sulfur": 1818185 }, { "group": "guns", @@ -591983,7 +604313,7 @@ "time": 136363.5, "timeString": "37 hours 52 min 43 sec", "fuel": null, - "sulfur": 2423647 + "sulfur": 909095 }, { "group": "guns", @@ -592019,7 +604349,7 @@ "time": 330355.2, "timeString": "91 hours 45 min 55 sec", "fuel": null, - "sulfur": 7617149 + "sulfur": 2857145 }, { "group": "guns", @@ -592055,7 +604385,7 @@ "time": 165177.6, "timeString": "45 hours 52 min 57 sec", "fuel": null, - "sulfur": 3808581 + "sulfur": 1428575 }, { "group": "melee", @@ -592158,10 +604488,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 463, + "quantity": 447, "quantityTypeId": null, - "time": 33796, - "timeString": "9 hours 23 min 16 sec", + "time": 25446, + "timeString": "7 hours 4 min 6 sec", "fuel": null, "sulfur": null }, @@ -592182,10 +604512,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 46, + "quantity": 44, "quantityTypeId": null, - "time": 3379, - "timeString": "56 min 19 sec", + "time": 2543, + "timeString": "42 min 23 sec", "fuel": null, "sulfur": null }, @@ -592391,7 +604721,7 @@ "time": 212497.1, "timeString": "59 hours 1 min 37 sec", "fuel": null, - "sulfur": 6665000 + "sulfur": 2500000 }, { "group": "guns", @@ -592427,7 +604757,7 @@ "time": 106247.1, "timeString": "29 hours 30 min 47 sec", "fuel": null, - "sulfur": 3332500 + "sulfur": 1250000 }, { "group": "guns", @@ -592487,7 +604817,7 @@ "time": 219526.85, "timeString": "60 hours 58 min 46 sec", "fuel": null, - "sulfur": 10000000 + "sulfur": 3335000 }, { "group": "guns", @@ -592547,7 +604877,7 @@ "time": 109761.225, "timeString": "30 hours 29 min 21 sec", "fuel": null, - "sulfur": 5000000 + "sulfur": 1667500 }, { "group": "guns", @@ -592556,8 +604886,8 @@ "caption": "Pistol Bullet", "quantity": 666667, "quantityTypeId": "785728077", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 1666668 }, @@ -592568,8 +604898,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 666667, "quantityTypeId": "51984655", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, "sulfur": 5553336 }, @@ -592580,10 +604910,10 @@ "caption": "HV Pistol Ammo", "quantity": 666667, "quantityTypeId": "-1691396643", - "time": 174996.9, - "timeString": "48 hours 36 min 36 sec", + "time": 153332.4, + "timeString": "42 hours 35 min 32 sec", "fuel": null, - "sulfur": 8886671 + "sulfur": 3333335 }, { "group": "guns", @@ -592592,8 +604922,8 @@ "caption": "Pistol Bullet", "quantity": 333334, "quantityTypeId": "785728077", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 833335 }, @@ -592604,8 +604934,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 333334, "quantityTypeId": "51984655", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, "sulfur": 2776672 }, @@ -592616,10 +604946,10 @@ "caption": "HV Pistol Ammo", "quantity": 333334, "quantityTypeId": "-1691396643", - "time": 87496.5, - "timeString": "24 hours 18 min 16 sec", + "time": 76666.2, + "timeString": "21 hours 17 min 46 sec", "fuel": null, - "sulfur": 4443342 + "sulfur": 1666670 }, { "group": "guns", @@ -592967,7 +605297,7 @@ "time": 172530.71, "timeString": "47 hours 55 min 30 sec", "fuel": null, - "sulfur": 7109342 + "sulfur": 2666670 }, { "group": "guns", @@ -593003,7 +605333,7 @@ "time": 86265.29, "timeString": "23 hours 57 min 45 sec", "fuel": null, - "sulfur": 3554671 + "sulfur": 1333335 }, { "group": "melee", @@ -593161,7 +605491,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -593389,7 +605719,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -593437,7 +605767,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -593497,7 +605827,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -593545,7 +605875,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -593953,7 +606283,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -593989,7 +606319,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -594109,7 +606439,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "guns", @@ -594157,7 +606487,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -594253,7 +606583,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -594301,7 +606631,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -594349,7 +606679,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -594397,7 +606727,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -594445,7 +606775,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -594493,7 +606823,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -594541,7 +606871,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -594589,7 +606919,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -594721,7 +607051,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "guns", @@ -594757,7 +607087,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -594855,6 +607185,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": "hard", @@ -594889,7 +607243,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -594925,7 +607279,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -595129,7 +607483,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -595165,7 +607519,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -595201,7 +607555,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "guns", @@ -595237,7 +607591,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -595340,10 +607694,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -595364,10 +607718,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -595573,7 +607927,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -595609,7 +607963,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -595669,7 +608023,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -595729,7 +608083,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -595738,8 +608092,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -595750,8 +608104,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -595762,10 +608116,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -595774,8 +608128,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -595786,8 +608140,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -595798,10 +608152,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -596149,7 +608503,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -596185,7 +608539,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -596343,7 +608697,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -596571,7 +608925,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -596619,7 +608973,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -596679,7 +609033,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -596727,7 +609081,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -597135,7 +609489,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -597171,7 +609525,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -597291,7 +609645,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "guns", @@ -597339,7 +609693,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -597435,7 +609789,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -597483,7 +609837,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -597531,7 +609885,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -597579,7 +609933,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -597627,7 +609981,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -597675,7 +610029,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -597723,7 +610077,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -597771,7 +610125,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -597903,7 +610257,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "guns", @@ -597939,7 +610293,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -598037,6 +610391,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": "hard", @@ -598071,7 +610449,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -598107,7 +610485,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -598311,7 +610689,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -598347,7 +610725,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -598383,7 +610761,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "guns", @@ -598419,7 +610797,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -598522,10 +610900,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -598546,10 +610924,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -598755,7 +611133,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -598791,7 +611169,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -598851,7 +611229,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -598911,7 +611289,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -598920,8 +611298,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -598932,8 +611310,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -598944,10 +611322,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -598956,8 +611334,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -598968,8 +611346,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -598980,10 +611358,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -599331,7 +611709,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -599367,7 +611745,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -599501,7 +611879,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -599645,7 +612023,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "explosive", @@ -599705,7 +612083,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "melee", @@ -599933,7 +612311,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -600017,7 +612395,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "melee", @@ -600089,7 +612467,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -600137,7 +612515,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -600185,7 +612563,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -600233,7 +612611,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -600317,7 +612695,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "melee", @@ -600367,6 +612745,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, { "group": "guns", "which": null, @@ -600401,7 +612791,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "melee", @@ -600521,7 +612911,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -600557,7 +612947,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "melee", @@ -600612,10 +613002,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -600749,7 +613139,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -600809,7 +613199,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -600818,8 +613208,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -600830,8 +613220,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -600842,10 +613232,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -601037,7 +613427,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "melee", @@ -601159,7 +613549,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -601387,7 +613777,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -601435,7 +613825,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -601495,7 +613885,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -601543,7 +613933,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -601951,7 +614341,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -601987,7 +614377,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -602107,7 +614497,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "guns", @@ -602155,7 +614545,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -602251,7 +614641,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -602299,7 +614689,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -602347,7 +614737,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -602395,7 +614785,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -602443,7 +614833,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -602491,7 +614881,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -602539,7 +614929,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -602587,7 +614977,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -602719,7 +615109,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "guns", @@ -602755,7 +615145,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -602853,6 +615243,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": "hard", @@ -602887,7 +615301,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -602923,7 +615337,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -603127,7 +615541,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -603163,7 +615577,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -603199,7 +615613,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "guns", @@ -603235,7 +615649,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -603338,10 +615752,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -603362,10 +615776,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -603571,7 +615985,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -603607,7 +616021,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -603667,7 +616081,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -603727,7 +616141,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -603736,8 +616150,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -603748,8 +616162,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -603760,10 +616174,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -603772,8 +616186,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -603784,8 +616198,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -603796,10 +616210,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -604147,7 +616561,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -604183,7 +616597,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -604317,7 +616731,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -604461,7 +616875,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "explosive", @@ -604521,7 +616935,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "melee", @@ -604749,7 +617163,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -604833,7 +617247,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "melee", @@ -604905,7 +617319,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -604953,7 +617367,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -605001,7 +617415,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -605049,7 +617463,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -605133,7 +617547,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "melee", @@ -605183,6 +617597,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, { "group": "guns", "which": null, @@ -605217,7 +617643,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "melee", @@ -605337,7 +617763,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -605373,7 +617799,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "melee", @@ -605428,10 +617854,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -605565,7 +617991,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -605625,7 +618051,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -605634,8 +618060,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -605646,8 +618072,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -605658,10 +618084,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -605853,7 +618279,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "melee", @@ -605975,7 +618401,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -606203,7 +618629,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -606251,7 +618677,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -606311,7 +618737,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -606359,7 +618785,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -606767,7 +619193,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -606803,7 +619229,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -606923,7 +619349,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "guns", @@ -606971,7 +619397,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -607067,7 +619493,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -607115,7 +619541,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -607163,7 +619589,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -607211,7 +619637,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -607259,7 +619685,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -607307,7 +619733,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -607355,7 +619781,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -607403,7 +619829,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -607535,7 +619961,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "guns", @@ -607571,7 +619997,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -607669,6 +620095,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": "hard", @@ -607703,7 +620153,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -607739,7 +620189,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -607943,7 +620393,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -607979,7 +620429,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -608015,7 +620465,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "guns", @@ -608051,7 +620501,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -608154,10 +620604,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -608178,10 +620628,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -608387,7 +620837,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -608423,7 +620873,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -608483,7 +620933,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -608543,7 +620993,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -608552,8 +621002,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -608564,8 +621014,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -608576,10 +621026,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -608588,8 +621038,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -608600,8 +621050,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -608612,10 +621062,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -608963,7 +621413,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -608999,7 +621449,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -609157,7 +621607,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -609385,7 +621835,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -609433,7 +621883,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -609493,7 +621943,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -609541,7 +621991,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -609949,7 +622399,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -609985,7 +622435,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -610105,7 +622555,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "guns", @@ -610153,7 +622603,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -610249,7 +622699,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -610297,7 +622747,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -610345,7 +622795,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -610393,7 +622843,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -610441,7 +622891,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -610489,7 +622939,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -610537,7 +622987,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -610585,7 +623035,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -610717,7 +623167,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "guns", @@ -610753,7 +623203,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -610851,6 +623301,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": "hard", @@ -610885,7 +623359,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -610921,7 +623395,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -611125,7 +623599,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -611161,7 +623635,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -611197,7 +623671,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "guns", @@ -611233,7 +623707,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -611336,10 +623810,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -611360,10 +623834,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -611569,7 +624043,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -611605,7 +624079,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -611665,7 +624139,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -611725,7 +624199,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -611734,8 +624208,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -611746,8 +624220,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -611758,10 +624232,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -611770,8 +624244,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -611782,8 +624256,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -611794,10 +624268,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -612145,7 +624619,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -612181,7 +624655,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -612339,7 +624813,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -612567,7 +625041,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -612615,7 +625089,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -612675,7 +625149,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -612723,7 +625197,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -613131,7 +625605,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -613167,7 +625641,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -613287,7 +625761,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "guns", @@ -613335,7 +625809,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -613431,7 +625905,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -613479,7 +625953,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -613527,7 +626001,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -613575,7 +626049,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -613623,7 +626097,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -613671,7 +626145,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -613719,7 +626193,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -613767,7 +626241,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -613899,7 +626373,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "guns", @@ -613935,7 +626409,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -614033,6 +626507,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": "hard", @@ -614067,7 +626565,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -614103,7 +626601,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -614307,7 +626805,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -614343,7 +626841,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -614379,7 +626877,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "guns", @@ -614415,7 +626913,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -614518,10 +627016,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -614542,10 +627040,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -614751,7 +627249,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -614787,7 +627285,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -614847,7 +627345,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -614907,7 +627405,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -614916,8 +627414,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -614928,8 +627426,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -614940,10 +627438,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -614952,8 +627450,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -614964,8 +627462,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -614976,10 +627474,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -615327,7 +627825,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -615363,7 +627861,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -615497,7 +627995,7 @@ "time": 484, "timeString": "8 min 4 sec", "fuel": null, - "sulfur": 1620 + "sulfur": 972 }, { "group": "melee", @@ -615641,7 +628139,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -615701,7 +628199,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -615929,7 +628427,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -616013,7 +628511,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -616085,7 +628583,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -616133,7 +628631,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -616181,7 +628679,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -616229,7 +628727,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -616313,7 +628811,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -616363,6 +628861,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": null, @@ -616397,7 +628907,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -616517,7 +629027,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -616553,7 +629063,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -616608,10 +629118,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -616745,7 +629255,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -616805,7 +629315,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -616814,8 +629324,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -616826,8 +629336,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -616838,10 +629348,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -617033,7 +629543,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -617155,7 +629665,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -617383,7 +629893,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -617431,7 +629941,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -617491,7 +630001,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -617539,7 +630049,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -617947,7 +630457,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -617983,7 +630493,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -618103,7 +630613,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "guns", @@ -618151,7 +630661,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -618247,7 +630757,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -618295,7 +630805,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -618343,7 +630853,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -618391,7 +630901,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -618439,7 +630949,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -618487,7 +630997,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -618535,7 +631045,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -618583,7 +631093,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -618715,7 +631225,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "guns", @@ -618751,7 +631261,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -618849,6 +631359,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": "hard", @@ -618883,7 +631417,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -618919,7 +631453,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -619123,7 +631657,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -619159,7 +631693,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -619195,7 +631729,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "guns", @@ -619231,7 +631765,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -619334,10 +631868,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -619358,10 +631892,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -619567,7 +632101,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -619603,7 +632137,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -619663,7 +632197,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -619723,7 +632257,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -619732,8 +632266,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -619744,8 +632278,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -619756,10 +632290,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -619768,8 +632302,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -619780,8 +632314,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -619792,10 +632326,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -620143,7 +632677,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -620179,7 +632713,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -620337,7 +632871,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -620565,7 +633099,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -620613,7 +633147,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -620673,7 +633207,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -620721,7 +633255,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -621129,7 +633663,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -621165,7 +633699,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -621285,7 +633819,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "guns", @@ -621333,7 +633867,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -621429,7 +633963,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -621477,7 +634011,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -621525,7 +634059,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -621573,7 +634107,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -621621,7 +634155,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -621669,7 +634203,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -621717,7 +634251,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -621765,7 +634299,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -621897,7 +634431,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "guns", @@ -621933,7 +634467,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -622031,6 +634565,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": "hard", @@ -622065,7 +634623,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -622101,7 +634659,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -622305,7 +634863,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -622341,7 +634899,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -622377,7 +634935,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "guns", @@ -622413,7 +634971,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -622516,10 +635074,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -622540,10 +635098,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -622749,7 +635307,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -622785,7 +635343,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -622845,7 +635403,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -622905,7 +635463,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -622914,8 +635472,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -622926,8 +635484,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -622938,10 +635496,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -622950,8 +635508,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -622962,8 +635520,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -622974,10 +635532,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -623325,7 +635883,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -623361,7 +635919,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -623495,7 +636053,7 @@ "time": 484, "timeString": "8 min 4 sec", "fuel": null, - "sulfur": 1620 + "sulfur": 972 }, { "group": "melee", @@ -623639,7 +636197,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -623699,7 +636257,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -623927,7 +636485,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -624011,7 +636569,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -624083,7 +636641,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -624131,7 +636689,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -624179,7 +636737,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -624227,7 +636785,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -624311,7 +636869,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -624361,6 +636919,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": null, @@ -624395,7 +636965,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -624515,7 +637085,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -624551,7 +637121,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -624606,10 +637176,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -624743,7 +637313,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -624803,7 +637373,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -624812,8 +637382,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -624824,8 +637394,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -624836,10 +637406,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -625031,7 +637601,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -625129,7 +637699,7 @@ "time": 484, "timeString": "8 min 4 sec", "fuel": null, - "sulfur": 1620 + "sulfur": 972 }, { "group": "melee", @@ -625273,7 +637843,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -625333,7 +637903,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -625561,7 +638131,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -625645,7 +638215,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -625717,7 +638287,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -625765,7 +638335,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -625813,7 +638383,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -625861,7 +638431,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -625945,7 +638515,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -625995,6 +638565,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": null, @@ -626029,7 +638611,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -626149,7 +638731,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -626185,7 +638767,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -626240,10 +638822,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -626377,7 +638959,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -626437,7 +639019,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -626446,8 +639028,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -626458,8 +639040,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -626470,10 +639052,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -626665,7 +639247,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -626763,7 +639345,7 @@ "time": 484, "timeString": "8 min 4 sec", "fuel": null, - "sulfur": 1620 + "sulfur": 972 }, { "group": "melee", @@ -626907,7 +639489,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -626967,7 +639549,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -627195,7 +639777,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -627279,7 +639861,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -627351,7 +639933,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -627399,7 +639981,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -627447,7 +640029,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -627495,7 +640077,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -627579,7 +640161,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -627629,6 +640211,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": null, @@ -627663,7 +640257,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -627783,7 +640377,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -627819,7 +640413,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -627874,10 +640468,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -628011,7 +640605,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -628071,7 +640665,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -628080,8 +640674,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -628092,8 +640686,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -628104,10 +640698,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -628299,7 +640893,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -628397,7 +640991,7 @@ "time": 484, "timeString": "8 min 4 sec", "fuel": null, - "sulfur": 1620 + "sulfur": 972 }, { "group": "melee", @@ -628541,7 +641135,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -628601,7 +641195,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -628829,7 +641423,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -628913,7 +641507,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -628985,7 +641579,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -629033,7 +641627,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -629081,7 +641675,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -629129,7 +641723,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -629213,7 +641807,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -629263,6 +641857,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": null, @@ -629297,7 +641903,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -629417,7 +642023,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -629453,7 +642059,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -629508,10 +642114,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -629645,7 +642251,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -629705,7 +642311,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -629714,8 +642320,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -629726,8 +642332,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -629738,10 +642344,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -629933,7 +642539,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -630055,7 +642661,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -630283,7 +642889,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -630331,7 +642937,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -630391,7 +642997,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -630439,7 +643045,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -630847,7 +643453,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -630883,7 +643489,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -631003,7 +643609,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "guns", @@ -631051,7 +643657,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -631147,7 +643753,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -631195,7 +643801,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -631243,7 +643849,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -631291,7 +643897,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -631339,7 +643945,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -631387,7 +643993,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -631435,7 +644041,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -631483,7 +644089,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -631615,7 +644221,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "guns", @@ -631651,7 +644257,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -631749,6 +644355,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": "hard", @@ -631783,7 +644413,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -631819,7 +644449,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -632023,7 +644653,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -632059,7 +644689,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -632095,7 +644725,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "guns", @@ -632131,7 +644761,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -632234,10 +644864,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -632258,10 +644888,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -632467,7 +645097,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -632503,7 +645133,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -632563,7 +645193,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -632623,7 +645253,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -632632,8 +645262,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -632644,8 +645274,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -632656,10 +645286,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -632668,8 +645298,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -632680,8 +645310,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -632692,10 +645322,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -633043,7 +645673,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -633079,7 +645709,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -633213,7 +645843,7 @@ "time": 484, "timeString": "8 min 4 sec", "fuel": null, - "sulfur": 1620 + "sulfur": 972 }, { "group": "melee", @@ -633357,7 +645987,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -633417,7 +646047,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -633645,7 +646275,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -633729,7 +646359,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -633801,7 +646431,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -633849,7 +646479,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -633897,7 +646527,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -633945,7 +646575,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -634029,7 +646659,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -634079,6 +646709,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": null, @@ -634113,7 +646755,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -634233,7 +646875,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -634269,7 +646911,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -634324,10 +646966,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -634461,7 +647103,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -634521,7 +647163,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -634530,8 +647172,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -634542,8 +647184,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -634554,10 +647196,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -634749,7 +647391,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -634871,7 +647513,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -635099,7 +647741,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -635147,7 +647789,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -635207,7 +647849,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -635255,7 +647897,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -635663,7 +648305,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -635699,7 +648341,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -635819,7 +648461,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "guns", @@ -635867,7 +648509,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -635963,7 +648605,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -636011,7 +648653,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -636059,7 +648701,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -636107,7 +648749,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -636155,7 +648797,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -636203,7 +648845,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -636251,7 +648893,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -636299,7 +648941,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -636431,7 +649073,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "guns", @@ -636467,7 +649109,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -636565,6 +649207,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": "hard", @@ -636599,7 +649265,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -636635,7 +649301,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -636839,7 +649505,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -636875,7 +649541,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -636911,7 +649577,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "guns", @@ -636947,7 +649613,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -637050,10 +649716,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -637074,10 +649740,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -637283,7 +649949,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -637319,7 +649985,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -637379,7 +650045,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -637439,7 +650105,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -637448,8 +650114,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -637460,8 +650126,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -637472,10 +650138,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -637484,8 +650150,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -637496,8 +650162,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -637508,10 +650174,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -637859,7 +650525,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -637895,7 +650561,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -638029,7 +650695,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -638173,7 +650839,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "explosive", @@ -638233,7 +650899,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "melee", @@ -638461,7 +651127,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -638545,7 +651211,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "melee", @@ -638617,7 +651283,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -638665,7 +651331,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -638713,7 +651379,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -638761,7 +651427,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -638845,7 +651511,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "melee", @@ -638895,6 +651561,18 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, { "group": "guns", "which": null, @@ -638929,7 +651607,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "melee", @@ -639049,7 +651727,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -639085,7 +651763,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "melee", @@ -639140,10 +651818,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -639277,7 +651955,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -639337,7 +652015,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -639346,8 +652024,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -639358,8 +652036,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -639370,10 +652048,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -639565,7 +652243,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "melee", @@ -639687,7 +652365,7 @@ "time": 538, "timeString": "8 min 58 sec", "fuel": null, - "sulfur": 1800 + "sulfur": 1080 }, { "group": "melee", @@ -639915,7 +652593,7 @@ "time": 548.0689, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -639963,7 +652641,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -640023,7 +652701,7 @@ "time": 3152.9, "timeString": "52 min 32 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -640071,7 +652749,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -640479,7 +653157,7 @@ "time": 665.8125, "timeString": "11 min 5 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -640515,7 +653193,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -640635,7 +653313,7 @@ "time": 395.875, "timeString": "6 min 35 sec", "fuel": null, - "sulfur": 34800 + "sulfur": 11606 }, { "group": "guns", @@ -640683,7 +653361,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -640779,7 +653457,7 @@ "time": 3347, "timeString": "55 min 47 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -640827,7 +653505,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -640875,7 +653553,7 @@ "time": 621.92, "timeString": "10 min 21 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -640923,7 +653601,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -640971,7 +653649,7 @@ "time": 295.26, "timeString": "4 min 55 sec", "fuel": null, - "sulfur": 30780 + "sulfur": 10265 }, { "group": "guns", @@ -641019,7 +653697,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -641067,7 +653745,7 @@ "time": 654.25, "timeString": "10 min 54 sec", "fuel": null, - "sulfur": 40000 + "sulfur": 13340 }, { "group": "guns", @@ -641115,7 +653793,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -641247,7 +653925,7 @@ "time": 664.82, "timeString": "11 min 4 sec", "fuel": null, - "sulfur": 29633 + "sulfur": 11115 }, { "group": "guns", @@ -641283,7 +653961,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -641381,6 +654059,30 @@ "fuel": null, "sulfur": null }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2667, + "quantityTypeId": "-1211166256", + "time": 293.8, + "timeString": "4 min 53 sec", + "fuel": null, + "sulfur": 8881 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "guns", "which": "hard", @@ -641415,7 +654117,7 @@ "time": 609.8, "timeString": "10 min 9 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -641451,7 +654153,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -641655,7 +654357,7 @@ "time": 1363.5, "timeString": "22 min 43 sec", "fuel": null, - "sulfur": 24247 + "sulfur": 9095 }, { "group": "guns", @@ -641691,7 +654393,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -641727,7 +654429,7 @@ "time": 1651.3, "timeString": "27 min 31 sec", "fuel": null, - "sulfur": 38097 + "sulfur": 14290 }, { "group": "guns", @@ -641763,7 +654465,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -641866,10 +654568,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 116, + "quantity": 112, "quantityTypeId": null, - "time": 8449, - "timeString": "2 hours 20 min 49 sec", + "time": 6361, + "timeString": "1 hour 46 min 1 sec", "fuel": null, "sulfur": null }, @@ -641890,10 +654592,10 @@ "which": "soft", "toolId": "-1506397857", "caption": null, - "quantity": 12, + "quantity": 11, "quantityTypeId": null, - "time": 845, - "timeString": "14 min 5 sec", + "time": 635, + "timeString": "10 min 35 sec", "fuel": null, "sulfur": null }, @@ -642099,7 +654801,7 @@ "time": 1059.6, "timeString": "17 min 39 sec", "fuel": null, - "sulfur": 33325 + "sulfur": 12500 }, { "group": "guns", @@ -642135,7 +654837,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -642195,7 +654897,7 @@ "time": 1096.425, "timeString": "18 min 16 sec", "fuel": null, - "sulfur": 50000 + "sulfur": 16675 }, { "group": "guns", @@ -642255,7 +654957,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -642264,8 +654966,8 @@ "caption": "Pistol Bullet", "quantity": 3334, "quantityTypeId": "785728077", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 8335 }, @@ -642276,8 +654978,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 3334, "quantityTypeId": "51984655", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, "sulfur": 27772 }, @@ -642288,10 +654990,10 @@ "caption": "HV Pistol Ammo", "quantity": 3334, "quantityTypeId": "-1691396643", - "time": 871.5, - "timeString": "14 min 31 sec", + "time": 766.2, + "timeString": "12 min 46 sec", "fuel": null, - "sulfur": 44442 + "sulfur": 16670 }, { "group": "guns", @@ -642300,8 +655002,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -642312,8 +655014,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1667, "quantityTypeId": "51984655", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 13886 }, @@ -642324,10 +655026,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -642675,7 +655377,7 @@ "time": 861.29, "timeString": "14 min 21 sec", "fuel": null, - "sulfur": 35551 + "sulfur": 13335 }, { "group": "guns", @@ -642711,7 +655413,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -642832,8 +655534,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -642857,7 +655559,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -643049,7 +655751,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -643085,7 +655787,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -643145,7 +655847,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -643169,7 +655871,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -643745,7 +656447,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -643781,7 +656483,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -643865,7 +656567,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -643901,7 +656603,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -643985,7 +656687,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -644009,7 +656711,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -644057,7 +656759,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -644105,7 +656807,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -644153,7 +656855,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -644177,7 +656879,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -644225,7 +656927,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -644261,7 +656963,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -644357,7 +657059,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -644381,7 +657083,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -644431,6 +657133,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": "both", @@ -644477,7 +657215,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -644513,7 +657251,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -644681,7 +657419,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -644705,7 +657443,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -644741,7 +657479,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -644777,7 +657515,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -644858,8 +657596,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -645005,7 +657743,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -645041,7 +657779,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -645101,7 +657839,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -645161,7 +657899,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -645197,7 +657935,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -645233,7 +657971,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -645533,7 +658271,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -645569,7 +658307,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -645702,8 +658440,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -645727,7 +658465,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -645919,7 +658657,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -645955,7 +658693,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -646015,7 +658753,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -646039,7 +658777,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -646615,7 +659353,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -646651,7 +659389,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -646735,7 +659473,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -646771,7 +659509,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -646855,7 +659593,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -646879,7 +659617,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -646927,7 +659665,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -646975,7 +659713,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -647023,7 +659761,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -647047,7 +659785,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -647095,7 +659833,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -647131,7 +659869,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -647227,7 +659965,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -647251,7 +659989,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -647301,6 +660039,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": "both", @@ -647347,7 +660121,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -647383,7 +660157,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -647551,7 +660325,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -647575,7 +660349,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -647611,7 +660385,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -647647,7 +660421,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -647728,8 +660502,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -647875,7 +660649,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -647911,7 +660685,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -647971,7 +660745,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -648031,7 +660805,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -648067,7 +660841,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -648103,7 +660877,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -648403,7 +661177,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -648439,7 +661213,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -648572,8 +661346,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -648597,7 +661371,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -648741,7 +661515,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -648801,7 +661575,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -649197,7 +661971,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -649281,7 +662055,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -649353,7 +662127,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -649401,7 +662175,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -649449,7 +662223,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -649497,7 +662271,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -649581,7 +662355,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -649631,6 +662405,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -649677,7 +662475,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -649821,7 +662619,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -649857,7 +662655,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -649914,8 +662712,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -650049,7 +662847,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -650109,7 +662907,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -650145,7 +662943,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -650361,7 +663159,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -650458,8 +663256,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -650483,7 +663281,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -650675,7 +663473,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -650711,7 +663509,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -650771,7 +663569,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -650795,7 +663593,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -651371,7 +664169,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -651407,7 +664205,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -651491,7 +664289,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -651527,7 +664325,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -651611,7 +664409,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -651635,7 +664433,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -651683,7 +664481,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -651731,7 +664529,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -651779,7 +664577,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -651803,7 +664601,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -651851,7 +664649,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -651887,7 +664685,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -651983,7 +664781,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -652007,7 +664805,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -652057,6 +664855,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": "both", @@ -652103,7 +664937,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -652139,7 +664973,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -652307,7 +665141,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -652331,7 +665165,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -652367,7 +665201,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -652403,7 +665237,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -652484,8 +665318,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -652631,7 +665465,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -652667,7 +665501,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -652727,7 +665561,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -652787,7 +665621,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -652823,7 +665657,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -652859,7 +665693,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -653159,7 +665993,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -653195,7 +666029,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -653328,8 +666162,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -653353,7 +666187,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -653497,7 +666331,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -653557,7 +666391,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -653953,7 +666787,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -654037,7 +666871,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -654109,7 +666943,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -654157,7 +666991,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -654205,7 +667039,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -654253,7 +667087,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -654337,7 +667171,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -654387,6 +667221,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -654433,7 +667291,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -654577,7 +667435,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -654613,7 +667471,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -654670,8 +667528,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -654805,7 +667663,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -654865,7 +667723,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -654901,7 +667759,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -655117,7 +667975,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -655214,8 +668072,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -655239,7 +668097,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -655431,7 +668289,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -655467,7 +668325,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -655527,7 +668385,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -655551,7 +668409,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -656127,7 +668985,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -656163,7 +669021,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -656247,7 +669105,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -656283,7 +669141,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -656367,7 +669225,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -656391,7 +669249,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -656439,7 +669297,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -656487,7 +669345,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -656535,7 +669393,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -656559,7 +669417,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -656607,7 +669465,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -656643,7 +669501,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -656739,7 +669597,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -656763,7 +669621,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -656813,6 +669671,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": "both", @@ -656859,7 +669753,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -656895,7 +669789,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -657063,7 +669957,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -657087,7 +669981,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -657123,7 +670017,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -657159,7 +670053,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -657240,8 +670134,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -657387,7 +670281,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -657423,7 +670317,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -657483,7 +670377,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -657543,7 +670437,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -657579,7 +670473,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -657615,7 +670509,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -657915,7 +670809,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -657951,7 +670845,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -658084,8 +670978,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -658109,7 +671003,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -658301,7 +671195,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -658337,7 +671231,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -658397,7 +671291,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -658421,7 +671315,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -658997,7 +671891,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -659033,7 +671927,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -659117,7 +672011,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -659153,7 +672047,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -659237,7 +672131,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -659261,7 +672155,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -659309,7 +672203,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -659357,7 +672251,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -659405,7 +672299,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -659429,7 +672323,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -659477,7 +672371,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -659513,7 +672407,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -659609,7 +672503,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -659633,7 +672527,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -659683,6 +672577,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": "both", @@ -659729,7 +672659,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -659765,7 +672695,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -659933,7 +672863,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -659957,7 +672887,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -659993,7 +672923,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -660029,7 +672959,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -660110,8 +673040,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -660257,7 +673187,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -660293,7 +673223,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -660353,7 +673283,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -660413,7 +673343,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -660449,7 +673379,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -660485,7 +673415,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -660785,7 +673715,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -660821,7 +673751,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -660954,8 +673884,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -660979,7 +673909,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -661171,7 +674101,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -661207,7 +674137,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -661267,7 +674197,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -661291,7 +674221,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -661867,7 +674797,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -661903,7 +674833,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -661987,7 +674917,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -662023,7 +674953,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -662107,7 +675037,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -662131,7 +675061,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -662179,7 +675109,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -662227,7 +675157,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -662275,7 +675205,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -662299,7 +675229,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -662347,7 +675277,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -662383,7 +675313,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -662479,7 +675409,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -662503,7 +675433,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -662553,6 +675483,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": "both", @@ -662599,7 +675565,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -662635,7 +675601,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -662803,7 +675769,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -662827,7 +675793,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -662863,7 +675829,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -662899,7 +675865,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -662980,8 +675946,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -663127,7 +676093,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -663163,7 +676129,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -663223,7 +676189,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -663283,7 +676249,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -663319,7 +676285,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -663355,7 +676321,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -663655,7 +676621,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -663691,7 +676657,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -663824,8 +676790,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -663849,7 +676815,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -663993,7 +676959,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -664053,7 +677019,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -664449,7 +677415,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -664533,7 +677499,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -664605,7 +677571,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -664653,7 +677619,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -664701,7 +677667,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -664749,7 +677715,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -664833,7 +677799,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -664883,6 +677849,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": null, @@ -664929,7 +677919,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -665073,7 +678063,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -665109,7 +678099,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -665301,7 +678291,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -665361,7 +678351,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -665397,7 +678387,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -665613,7 +678603,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -665710,8 +678700,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -665735,7 +678725,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -665927,7 +678917,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -665963,7 +678953,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -666023,7 +679013,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -666047,7 +679037,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -666623,7 +679613,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -666659,7 +679649,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -666743,7 +679733,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -666779,7 +679769,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -666863,7 +679853,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -666887,7 +679877,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -666935,7 +679925,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -666983,7 +679973,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -667031,7 +680021,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -667055,7 +680045,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -667103,7 +680093,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -667139,7 +680129,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -667235,7 +680225,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -667259,7 +680249,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -667309,6 +680299,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": "both", @@ -667355,7 +680381,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -667391,7 +680417,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -667559,7 +680585,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -667583,7 +680609,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -667619,7 +680645,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -667655,7 +680681,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -667736,8 +680762,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -667883,7 +680909,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -667919,7 +680945,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -667979,7 +681005,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -668039,7 +681065,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -668075,7 +681101,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -668111,7 +681137,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -668411,7 +681437,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -668447,7 +681473,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -668580,8 +681606,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -668605,7 +681631,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -668797,7 +681823,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -668833,7 +681859,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -668893,7 +681919,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -668917,7 +681943,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -669493,7 +682519,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -669529,7 +682555,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -669613,7 +682639,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -669649,7 +682675,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -669733,7 +682759,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -669757,7 +682783,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -669805,7 +682831,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -669853,7 +682879,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -669901,7 +682927,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -669925,7 +682951,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -669973,7 +682999,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -670009,7 +683035,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -670105,7 +683131,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -670129,7 +683155,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -670179,6 +683205,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": "both", @@ -670225,7 +683287,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -670261,7 +683323,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -670429,7 +683491,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -670453,7 +683515,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -670489,7 +683551,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -670525,7 +683587,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -670606,8 +683668,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -670753,7 +683815,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -670789,7 +683851,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -670849,7 +683911,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -670909,7 +683971,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -670945,7 +684007,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -670981,7 +684043,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -671281,7 +684343,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -671317,7 +684379,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -671450,8 +684512,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -671475,7 +684537,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -671619,7 +684681,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -671679,7 +684741,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -672075,7 +685137,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -672159,7 +685221,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -672231,7 +685293,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -672279,7 +685341,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -672327,7 +685389,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -672375,7 +685437,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -672459,7 +685521,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -672509,6 +685571,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": null, @@ -672555,7 +685641,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -672699,7 +685785,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -672735,7 +685821,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -672927,7 +686013,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -672987,7 +686073,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -673023,7 +686109,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -673239,7 +686325,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -673336,8 +686422,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -673361,7 +686447,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -673505,7 +686591,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -673565,7 +686651,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -673961,7 +687047,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -674045,7 +687131,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -674117,7 +687203,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -674165,7 +687251,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -674213,7 +687299,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -674261,7 +687347,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -674345,7 +687431,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -674395,6 +687481,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": null, @@ -674441,7 +687551,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -674585,7 +687695,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -674621,7 +687731,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -674813,7 +687923,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -674873,7 +687983,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -674909,7 +688019,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -675125,7 +688235,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -675222,8 +688332,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -675247,7 +688357,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -675391,7 +688501,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -675451,7 +688561,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -675847,7 +688957,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -675931,7 +689041,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -676003,7 +689113,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -676051,7 +689161,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -676099,7 +689209,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -676147,7 +689257,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -676231,7 +689341,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -676281,6 +689391,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": null, @@ -676327,7 +689461,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -676471,7 +689605,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -676507,7 +689641,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -676699,7 +689833,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -676759,7 +689893,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -676795,7 +689929,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -677011,7 +690145,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -677108,8 +690242,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -677133,7 +690267,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -677277,7 +690411,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -677337,7 +690471,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -677733,7 +690867,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -677817,7 +690951,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -677889,7 +691023,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -677937,7 +691071,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -677985,7 +691119,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -678033,7 +691167,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -678117,7 +691251,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -678167,6 +691301,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": null, @@ -678213,7 +691371,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -678357,7 +691515,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -678393,7 +691551,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -678585,7 +691743,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -678645,7 +691803,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -678681,7 +691839,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -678897,7 +692055,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -678994,8 +692152,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -679019,7 +692177,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -679211,7 +692369,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -679247,7 +692405,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -679307,7 +692465,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -679331,7 +692489,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -679907,7 +693065,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -679943,7 +693101,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -680027,7 +693185,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -680063,7 +693221,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -680147,7 +693305,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -680171,7 +693329,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -680219,7 +693377,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -680267,7 +693425,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -680315,7 +693473,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -680339,7 +693497,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -680387,7 +693545,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -680423,7 +693581,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -680519,7 +693677,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -680543,7 +693701,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -680593,6 +693751,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": "both", @@ -680639,7 +693833,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -680675,7 +693869,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -680843,7 +694037,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -680867,7 +694061,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -680903,7 +694097,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -680939,7 +694133,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -681020,8 +694214,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -681167,7 +694361,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -681203,7 +694397,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -681263,7 +694457,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -681323,7 +694517,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -681359,7 +694553,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -681395,7 +694589,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -681695,7 +694889,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -681731,7 +694925,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -681864,8 +695058,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -681889,7 +695083,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -682033,7 +695227,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -682093,7 +695287,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -682489,7 +695683,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -682573,7 +695767,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -682645,7 +695839,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -682693,7 +695887,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -682741,7 +695935,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -682789,7 +695983,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -682873,7 +696067,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -682923,6 +696117,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": null, @@ -682969,7 +696187,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -683113,7 +696331,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -683149,7 +696367,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -683341,7 +696559,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -683401,7 +696619,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -683437,7 +696655,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -683653,7 +696871,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -683750,8 +696968,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -683775,7 +696993,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -683967,7 +697185,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -684003,7 +697221,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -684063,7 +697281,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -684087,7 +697305,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -684663,7 +697881,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -684699,7 +697917,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -684783,7 +698001,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -684819,7 +698037,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -684903,7 +698121,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -684927,7 +698145,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -684975,7 +698193,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -685023,7 +698241,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -685071,7 +698289,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -685095,7 +698313,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -685143,7 +698361,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -685179,7 +698397,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -685275,7 +698493,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -685299,7 +698517,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -685349,6 +698567,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": "both", @@ -685395,7 +698649,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -685431,7 +698685,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -685599,7 +698853,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -685623,7 +698877,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -685659,7 +698913,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -685695,7 +698949,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -685776,8 +699030,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -685923,7 +699177,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -685959,7 +699213,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -686019,7 +699273,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -686079,7 +699333,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -686115,7 +699369,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -686151,7 +699405,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -686451,7 +699705,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -686487,7 +699741,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -686620,8 +699874,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -686645,7 +699899,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -686789,7 +700043,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "explosive", @@ -686849,7 +700103,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -687245,7 +700499,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -687329,7 +700583,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "melee", @@ -687401,7 +700655,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -687449,7 +700703,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -687497,7 +700751,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -687545,7 +700799,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -687629,7 +700883,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -687679,6 +700933,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, { "group": "explosive", "which": null, @@ -687725,7 +701003,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -687869,7 +701147,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -687905,7 +701183,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -687962,8 +701240,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -688097,7 +701375,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -688157,7 +701435,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -688193,7 +701471,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -688409,7 +701687,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "melee", @@ -688506,8 +701784,8 @@ "quantityTypeId": null, "time": 1, "timeString": "1 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -688531,7 +701809,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -688723,7 +702001,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -688759,7 +702037,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "explosive", @@ -688819,7 +702097,7 @@ "time": 1.7, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -688843,7 +702121,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -689419,7 +702697,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -689455,7 +702733,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -689539,7 +702817,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -689575,7 +702853,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "melee", @@ -689659,7 +702937,7 @@ "time": 2.6, "timeString": "2 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -689683,7 +702961,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -689731,7 +703009,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -689779,7 +703057,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -689827,7 +703105,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -689851,7 +703129,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -689899,7 +703177,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -689935,7 +703213,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 20 + "sulfur": 7 }, { "group": "guns", @@ -690031,7 +703309,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -690055,7 +703333,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -690105,6 +703383,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 17.7, + "timeString": "17 sec", + "fuel": 3, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 3, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 10 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 2, + "quantityTypeId": "-1211166256", + "time": 1, + "timeString": "1 sec", + "fuel": null, + "sulfur": 7 + }, { "group": "explosive", "which": "both", @@ -690151,7 +703465,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -690187,7 +703501,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -690355,7 +703669,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -690379,7 +703693,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 13 + "sulfur": 5 }, { "group": "guns", @@ -690415,7 +703729,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -690451,7 +703765,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -690532,8 +703846,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 17, - "timeString": "17 sec", + "time": 13, + "timeString": "13 sec", "fuel": null, "sulfur": null }, @@ -690679,7 +703993,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -690715,7 +704029,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -690775,7 +704089,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 60 + "sulfur": 20 }, { "group": "guns", @@ -690835,7 +704149,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 13 }, { "group": "guns", @@ -690871,7 +704185,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 53 + "sulfur": 20 }, { "group": "guns", @@ -690907,7 +704221,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "guns", @@ -691207,7 +704521,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 40 + "sulfur": 15 }, { "group": "guns", @@ -691243,7 +704557,7 @@ "time": 1, "timeString": "1 sec", "fuel": null, - "sulfur": 27 + "sulfur": 10 }, { "group": "melee", @@ -691376,8 +704690,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -691413,7 +704727,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -691641,7 +704955,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -691689,7 +705003,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -691749,7 +705063,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -691797,7 +705111,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -692265,7 +705579,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -692301,7 +705615,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -692421,7 +705735,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "guns", @@ -692469,7 +705783,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -692565,7 +705879,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -692613,7 +705927,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -692661,7 +705975,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -692709,7 +706023,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -692757,7 +706071,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -692805,7 +706119,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -692853,7 +706167,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -692901,7 +706215,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -693033,7 +706347,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "guns", @@ -693069,7 +706383,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -693167,6 +706481,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": "both", @@ -693213,7 +706563,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -693249,7 +706599,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -693453,7 +706803,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -693489,7 +706839,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -693525,7 +706875,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "guns", @@ -693561,7 +706911,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -693664,10 +707014,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -693690,8 +707040,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -693897,7 +707247,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -693933,7 +707283,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -693993,7 +707343,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -694053,7 +707403,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -694062,8 +707412,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -694074,8 +707424,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -694086,10 +707436,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -694098,8 +707448,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -694110,8 +707460,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -694122,10 +707472,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -694473,7 +707823,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -694509,7 +707859,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -694630,8 +707980,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -694667,7 +708017,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -694895,7 +708245,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -694943,7 +708293,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -695003,7 +708353,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -695051,7 +708401,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -695519,7 +708869,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -695555,7 +708905,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -695675,7 +709025,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "guns", @@ -695723,7 +709073,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -695819,7 +709169,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -695867,7 +709217,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -695915,7 +709265,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -695963,7 +709313,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -696011,7 +709361,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -696059,7 +709409,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -696107,7 +709457,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -696155,7 +709505,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -696287,7 +709637,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "guns", @@ -696323,7 +709673,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -696421,6 +709771,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": "both", @@ -696467,7 +709853,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -696503,7 +709889,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -696707,7 +710093,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -696743,7 +710129,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -696779,7 +710165,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "guns", @@ -696815,7 +710201,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -696918,10 +710304,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -696944,8 +710330,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -697151,7 +710537,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -697187,7 +710573,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -697247,7 +710633,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -697307,7 +710693,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -697316,8 +710702,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -697328,8 +710714,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -697340,10 +710726,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -697352,8 +710738,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -697364,8 +710750,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -697376,10 +710762,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -697727,7 +711113,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -697763,7 +711149,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -697884,8 +711270,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -697909,7 +711295,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -698053,7 +711439,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "explosive", @@ -698113,7 +711499,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "melee", @@ -698401,7 +711787,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -698485,7 +711871,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "melee", @@ -698557,7 +711943,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -698605,7 +711991,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -698653,7 +712039,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -698701,7 +712087,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -698785,7 +712171,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "melee", @@ -698835,6 +712221,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, { "group": "explosive", "which": null, @@ -698881,7 +712291,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -699001,7 +712411,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -699037,7 +712447,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "melee", @@ -699092,10 +712502,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -699229,7 +712639,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -699289,7 +712699,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -699298,8 +712708,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -699310,8 +712720,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -699322,10 +712732,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -699517,7 +712927,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -699602,8 +713012,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -699639,7 +713049,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -699867,7 +713277,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -699915,7 +713325,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -699975,7 +713385,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -700023,7 +713433,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -700491,7 +713901,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -700527,7 +713937,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -700647,7 +714057,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "guns", @@ -700695,7 +714105,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -700791,7 +714201,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -700839,7 +714249,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -700887,7 +714297,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -700935,7 +714345,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -700983,7 +714393,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -701031,7 +714441,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -701079,7 +714489,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -701127,7 +714537,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -701259,7 +714669,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "guns", @@ -701295,7 +714705,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -701393,6 +714803,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": "both", @@ -701439,7 +714885,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -701475,7 +714921,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -701679,7 +715125,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -701715,7 +715161,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -701751,7 +715197,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "guns", @@ -701787,7 +715233,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -701890,10 +715336,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -701916,8 +715362,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -702123,7 +715569,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -702159,7 +715605,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -702219,7 +715665,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -702279,7 +715725,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -702288,8 +715734,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -702300,8 +715746,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -702312,10 +715758,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -702324,8 +715770,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -702336,8 +715782,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -702348,10 +715794,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -702699,7 +716145,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -702735,7 +716181,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -702856,8 +716302,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -702881,7 +716327,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -703025,7 +716471,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "explosive", @@ -703085,7 +716531,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "melee", @@ -703373,7 +716819,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -703457,7 +716903,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "melee", @@ -703529,7 +716975,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -703577,7 +717023,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -703625,7 +717071,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -703673,7 +717119,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -703757,7 +717203,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "melee", @@ -703807,6 +717253,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, { "group": "explosive", "which": null, @@ -703853,7 +717323,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -703973,7 +717443,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -704009,7 +717479,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "melee", @@ -704064,10 +717534,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -704201,7 +717671,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -704261,7 +717731,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -704270,8 +717740,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -704282,8 +717752,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -704294,10 +717764,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -704489,7 +717959,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -704574,8 +718044,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -704611,7 +718081,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -704839,7 +718309,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -704887,7 +718357,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -704947,7 +718417,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -704995,7 +718465,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -705463,7 +718933,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -705499,7 +718969,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -705619,7 +719089,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "guns", @@ -705667,7 +719137,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -705763,7 +719233,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -705811,7 +719281,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -705859,7 +719329,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -705907,7 +719377,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -705955,7 +719425,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -706003,7 +719473,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -706051,7 +719521,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -706099,7 +719569,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -706231,7 +719701,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "guns", @@ -706267,7 +719737,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -706365,6 +719835,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": "both", @@ -706411,7 +719917,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -706447,7 +719953,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -706651,7 +720157,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -706687,7 +720193,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -706723,7 +720229,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "guns", @@ -706759,7 +720265,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -706862,10 +720368,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -706888,8 +720394,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -707095,7 +720601,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -707131,7 +720637,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -707191,7 +720697,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -707251,7 +720757,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -707260,8 +720766,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -707272,8 +720778,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -707284,10 +720790,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -707296,8 +720802,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -707308,8 +720814,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -707320,10 +720826,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -707671,7 +721177,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -707707,7 +721213,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -707828,8 +721334,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -707865,7 +721371,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -708093,7 +721599,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -708141,7 +721647,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -708201,7 +721707,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -708249,7 +721755,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -708717,7 +722223,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -708753,7 +722259,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -708873,7 +722379,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "guns", @@ -708921,7 +722427,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -709017,7 +722523,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -709065,7 +722571,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -709113,7 +722619,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -709161,7 +722667,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -709209,7 +722715,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -709257,7 +722763,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -709305,7 +722811,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -709353,7 +722859,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -709485,7 +722991,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "guns", @@ -709521,7 +723027,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -709619,6 +723125,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": "both", @@ -709665,7 +723207,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -709701,7 +723243,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -709905,7 +723447,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -709941,7 +723483,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -709977,7 +723519,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "guns", @@ -710013,7 +723555,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -710116,10 +723658,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -710142,8 +723684,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -710349,7 +723891,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -710385,7 +723927,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -710445,7 +723987,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -710505,7 +724047,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -710514,8 +724056,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -710526,8 +724068,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -710538,10 +724080,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -710550,8 +724092,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -710562,8 +724104,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -710574,10 +724116,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -710925,7 +724467,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -710961,7 +724503,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -711082,8 +724624,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -711119,7 +724661,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -711347,7 +724889,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -711395,7 +724937,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -711455,7 +724997,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -711503,7 +725045,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -711971,7 +725513,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -712007,7 +725549,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -712127,7 +725669,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "guns", @@ -712175,7 +725717,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -712271,7 +725813,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -712319,7 +725861,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -712367,7 +725909,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -712415,7 +725957,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -712463,7 +726005,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -712511,7 +726053,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -712559,7 +726101,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -712607,7 +726149,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -712739,7 +726281,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "guns", @@ -712775,7 +726317,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -712873,6 +726415,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": "both", @@ -712919,7 +726497,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -712955,7 +726533,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -713159,7 +726737,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -713195,7 +726773,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -713231,7 +726809,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "guns", @@ -713267,7 +726845,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -713370,10 +726948,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -713396,8 +726974,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -713603,7 +727181,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -713639,7 +727217,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -713699,7 +727277,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -713759,7 +727337,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -713768,8 +727346,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -713780,8 +727358,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -713792,10 +727370,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -713804,8 +727382,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -713816,8 +727394,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -713828,10 +727406,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -714179,7 +727757,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -714215,7 +727793,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -714336,8 +727914,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -714361,7 +727939,7 @@ "time": 118, "timeString": "1 min 58 sec", "fuel": null, - "sulfur": 400 + "sulfur": 240 }, { "group": "melee", @@ -714505,7 +728083,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -714565,7 +728143,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -714853,7 +728431,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -714937,7 +728515,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -715009,7 +728587,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -715057,7 +728635,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -715105,7 +728683,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -715153,7 +728731,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -715237,7 +728815,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -715287,6 +728865,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": null, @@ -715333,7 +728935,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -715453,7 +729055,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -715489,7 +729091,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -715546,8 +729148,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -715681,7 +729283,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -715741,7 +729343,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -715750,8 +729352,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -715762,8 +729364,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -715774,10 +729376,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -715969,7 +729571,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -716054,8 +729656,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -716091,7 +729693,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -716319,7 +729921,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -716367,7 +729969,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -716427,7 +730029,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -716475,7 +730077,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -716943,7 +730545,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -716979,7 +730581,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -717099,7 +730701,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "guns", @@ -717147,7 +730749,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -717243,7 +730845,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -717291,7 +730893,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -717339,7 +730941,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -717387,7 +730989,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -717435,7 +731037,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -717483,7 +731085,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -717531,7 +731133,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -717579,7 +731181,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -717711,7 +731313,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "guns", @@ -717747,7 +731349,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -717845,6 +731447,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": "both", @@ -717891,7 +731529,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -717927,7 +731565,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -718131,7 +731769,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -718167,7 +731805,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -718203,7 +731841,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "guns", @@ -718239,7 +731877,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -718342,10 +731980,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -718368,8 +732006,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -718575,7 +732213,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -718611,7 +732249,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -718671,7 +732309,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -718731,7 +732369,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -718740,8 +732378,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -718752,8 +732390,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -718764,10 +732402,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -718776,8 +732414,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -718788,8 +732426,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -718800,10 +732438,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -719151,7 +732789,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -719187,7 +732825,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -719308,8 +732946,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -719345,7 +732983,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -719573,7 +733211,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -719621,7 +733259,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -719681,7 +733319,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -719729,7 +733367,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -720197,7 +733835,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -720233,7 +733871,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -720353,7 +733991,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "guns", @@ -720401,7 +734039,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -720497,7 +734135,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -720545,7 +734183,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -720593,7 +734231,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -720641,7 +734279,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -720689,7 +734327,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -720737,7 +734375,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -720785,7 +734423,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -720833,7 +734471,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -720965,7 +734603,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "guns", @@ -721001,7 +734639,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -721099,6 +734737,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": "both", @@ -721145,7 +734819,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -721181,7 +734855,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -721385,7 +735059,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -721421,7 +735095,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -721457,7 +735131,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "guns", @@ -721493,7 +735167,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -721596,10 +735270,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -721622,8 +735296,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -721829,7 +735503,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -721865,7 +735539,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -721925,7 +735599,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -721985,7 +735659,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -721994,8 +735668,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -722006,8 +735680,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -722018,10 +735692,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -722030,8 +735704,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -722042,8 +735716,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -722054,10 +735728,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -722405,7 +736079,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -722441,7 +736115,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -722562,8 +736236,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -722587,7 +736261,7 @@ "time": 118, "timeString": "1 min 58 sec", "fuel": null, - "sulfur": 400 + "sulfur": 240 }, { "group": "melee", @@ -722731,7 +736405,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -722791,7 +736465,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -723079,7 +736753,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -723163,7 +736837,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -723235,7 +736909,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -723283,7 +736957,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -723331,7 +737005,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -723379,7 +737053,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -723463,7 +737137,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -723513,6 +737187,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": null, @@ -723559,7 +737257,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -723679,7 +737377,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -723715,7 +737413,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -723772,8 +737470,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -723907,7 +737605,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -723967,7 +737665,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -723976,8 +737674,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -723988,8 +737686,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -724000,10 +737698,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -724195,7 +737893,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -724280,8 +737978,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -724305,7 +738003,7 @@ "time": 118, "timeString": "1 min 58 sec", "fuel": null, - "sulfur": 400 + "sulfur": 240 }, { "group": "melee", @@ -724449,7 +738147,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -724509,7 +738207,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -724797,7 +738495,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -724881,7 +738579,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -724953,7 +738651,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -725001,7 +738699,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -725049,7 +738747,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -725097,7 +738795,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -725181,7 +738879,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -725231,6 +738929,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": null, @@ -725277,7 +738999,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -725397,7 +739119,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -725433,7 +739155,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -725490,8 +739212,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -725625,7 +739347,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -725685,7 +739407,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -725694,8 +739416,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -725706,8 +739428,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -725718,10 +739440,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -725913,7 +739635,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -725998,8 +739720,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -726023,7 +739745,7 @@ "time": 118, "timeString": "1 min 58 sec", "fuel": null, - "sulfur": 400 + "sulfur": 240 }, { "group": "melee", @@ -726167,7 +739889,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -726227,7 +739949,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -726515,7 +740237,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -726599,7 +740321,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -726671,7 +740393,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -726719,7 +740441,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -726767,7 +740489,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -726815,7 +740537,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -726899,7 +740621,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -726949,6 +740671,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": null, @@ -726995,7 +740741,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -727115,7 +740861,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -727151,7 +740897,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -727208,8 +740954,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -727343,7 +741089,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -727403,7 +741149,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -727412,8 +741158,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -727424,8 +741170,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -727436,10 +741182,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -727631,7 +741377,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -727716,8 +741462,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -727741,7 +741487,7 @@ "time": 118, "timeString": "1 min 58 sec", "fuel": null, - "sulfur": 400 + "sulfur": 240 }, { "group": "melee", @@ -727885,7 +741631,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -727945,7 +741691,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -728233,7 +741979,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -728317,7 +742063,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -728389,7 +742135,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -728437,7 +742183,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -728485,7 +742231,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -728533,7 +742279,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -728617,7 +742363,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -728667,6 +742413,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": null, @@ -728713,7 +742483,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -728833,7 +742603,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -728869,7 +742639,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -728926,8 +742696,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -729061,7 +742831,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -729121,7 +742891,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -729130,8 +742900,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -729142,8 +742912,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -729154,10 +742924,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -729349,7 +743119,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -729434,8 +743204,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -729471,7 +743241,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -729699,7 +743469,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -729747,7 +743517,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -729807,7 +743577,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -729855,7 +743625,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -730323,7 +744093,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -730359,7 +744129,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -730479,7 +744249,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "guns", @@ -730527,7 +744297,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -730623,7 +744393,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -730671,7 +744441,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -730719,7 +744489,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -730767,7 +744537,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -730815,7 +744585,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -730863,7 +744633,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -730911,7 +744681,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -730959,7 +744729,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -731091,7 +744861,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "guns", @@ -731127,7 +744897,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -731225,6 +744995,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": "both", @@ -731271,7 +745077,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -731307,7 +745113,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -731511,7 +745317,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -731547,7 +745353,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -731583,7 +745389,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "guns", @@ -731619,7 +745425,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -731722,10 +745528,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -731748,8 +745554,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -731955,7 +745761,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -731991,7 +745797,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -732051,7 +745857,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -732111,7 +745917,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -732120,8 +745926,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -732132,8 +745938,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -732144,10 +745950,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -732156,8 +745962,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -732168,8 +745974,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -732180,10 +745986,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -732531,7 +746337,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -732567,7 +746373,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -732688,8 +746494,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -732713,7 +746519,7 @@ "time": 118, "timeString": "1 min 58 sec", "fuel": null, - "sulfur": 400 + "sulfur": 240 }, { "group": "melee", @@ -732857,7 +746663,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -732917,7 +746723,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -733205,7 +747011,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -733289,7 +747095,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -733361,7 +747167,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -733409,7 +747215,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -733457,7 +747263,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -733505,7 +747311,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -733589,7 +747395,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -733639,6 +747445,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": null, @@ -733685,7 +747515,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -733805,7 +747635,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -733841,7 +747671,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -733898,8 +747728,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -734033,7 +747863,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -734093,7 +747923,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -734102,8 +747932,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -734114,8 +747944,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -734126,10 +747956,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -734321,7 +748151,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -734406,8 +748236,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -734443,7 +748273,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -734671,7 +748501,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -734719,7 +748549,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -734779,7 +748609,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -734827,7 +748657,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -735295,7 +749125,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -735331,7 +749161,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -735451,7 +749281,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "guns", @@ -735499,7 +749329,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -735595,7 +749425,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -735643,7 +749473,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -735691,7 +749521,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -735739,7 +749569,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -735787,7 +749617,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -735835,7 +749665,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -735883,7 +749713,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -735931,7 +749761,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -736063,7 +749893,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "guns", @@ -736099,7 +749929,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -736197,6 +750027,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": "both", @@ -736243,7 +750109,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -736279,7 +750145,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -736483,7 +750349,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -736519,7 +750385,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -736555,7 +750421,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "guns", @@ -736591,7 +750457,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -736694,10 +750560,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -736720,8 +750586,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -736927,7 +750793,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -736963,7 +750829,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -737023,7 +750889,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -737083,7 +750949,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -737092,8 +750958,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -737104,8 +750970,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -737116,10 +750982,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -737128,8 +750994,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -737140,8 +751006,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -737152,10 +751018,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -737503,7 +751369,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -737539,7 +751405,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -737660,8 +751526,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -737685,7 +751551,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -737829,7 +751695,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "explosive", @@ -737889,7 +751755,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "melee", @@ -738177,7 +752043,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -738261,7 +752127,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "melee", @@ -738333,7 +752199,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -738381,7 +752247,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -738429,7 +752295,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -738477,7 +752343,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -738561,7 +752427,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "melee", @@ -738611,6 +752477,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, { "group": "explosive", "which": null, @@ -738657,7 +752547,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -738777,7 +752667,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -738813,7 +752703,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "melee", @@ -738868,10 +752758,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -739005,7 +752895,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -739065,7 +752955,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -739074,8 +752964,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -739086,8 +752976,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -739098,10 +752988,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -739293,7 +753183,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -739378,8 +753268,8 @@ "quantityTypeId": null, "time": 20.551605080357, "timeString": "20 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -739415,7 +753305,7 @@ "time": 142, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 480 + "sulfur": 288 }, { "group": "melee", @@ -739643,7 +753533,7 @@ "time": 91.3226, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -739691,7 +753581,7 @@ "time": 43.4613, "timeString": "43 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "explosive", @@ -739751,7 +753641,7 @@ "time": 525.2, "timeString": "8 min 45 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -739799,7 +753689,7 @@ "time": 262.6, "timeString": "4 min 22 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "melee", @@ -740267,7 +754157,7 @@ "time": 110.9125, "timeString": "1 min 50 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -740303,7 +754193,7 @@ "time": 54.0625, "timeString": "54 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -740423,7 +754313,7 @@ "time": 61.625, "timeString": "1 min 1 sec", "fuel": null, - "sulfur": 5800 + "sulfur": 1934 }, { "group": "guns", @@ -740471,7 +754361,7 @@ "time": 30.75, "timeString": "30 sec", "fuel": null, - "sulfur": 2900 + "sulfur": 967 }, { "group": "melee", @@ -740567,7 +754457,7 @@ "time": 557.2, "timeString": "9 min 17 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -740615,7 +754505,7 @@ "time": 278.4, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 2100 + "sulfur": 700 }, { "group": "guns", @@ -740663,7 +754553,7 @@ "time": 100.36, "timeString": "1 min 40 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -740711,7 +754601,7 @@ "time": 48.24, "timeString": "48 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -740759,7 +754649,7 @@ "time": 45.48, "timeString": "45 sec", "fuel": null, - "sulfur": 5140 + "sulfur": 1714 }, { "group": "guns", @@ -740807,7 +754697,7 @@ "time": 22.74, "timeString": "22 sec", "fuel": null, - "sulfur": 2580 + "sulfur": 860 }, { "group": "guns", @@ -740855,7 +754745,7 @@ "time": 107.475, "timeString": "1 min 47 sec", "fuel": null, - "sulfur": 6680 + "sulfur": 2228 }, { "group": "guns", @@ -740903,7 +754793,7 @@ "time": 53.65, "timeString": "53 sec", "fuel": null, - "sulfur": 3340 + "sulfur": 1114 }, { "group": "guns", @@ -741035,7 +754925,7 @@ "time": 109.26, "timeString": "1 min 49 sec", "fuel": null, - "sulfur": 4945 + "sulfur": 1855 }, { "group": "guns", @@ -741071,7 +754961,7 @@ "time": 54.63, "timeString": "54 sec", "fuel": null, - "sulfur": 2479 + "sulfur": 930 }, { "group": "melee", @@ -741169,6 +755059,42 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": "both", + "toolId": "703057617", + "caption": null, + "quantity": 255, + "quantityTypeId": null, + "time": 46.3, + "timeString": "46 sec", + "fuel": 255, + "sulfur": null + }, + { + "group": "guns", + "which": "hard", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 445, + "quantityTypeId": "-1211166256", + "time": 47.8, + "timeString": "47 sec", + "fuel": null, + "sulfur": 1482 + }, + { + "group": "guns", + "which": "soft", + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 223, + "quantityTypeId": "-1211166256", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 743 + }, { "group": "explosive", "which": "both", @@ -741215,7 +755141,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -741251,7 +755177,7 @@ "time": 49.5, "timeString": "49 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -741455,7 +755381,7 @@ "time": 225.45, "timeString": "3 min 45 sec", "fuel": null, - "sulfur": 4052 + "sulfur": 1520 }, { "group": "guns", @@ -741491,7 +755417,7 @@ "time": 112.65, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 2026 + "sulfur": 760 }, { "group": "guns", @@ -741527,7 +755453,7 @@ "time": 273.575, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 6358 + "sulfur": 2385 }, { "group": "guns", @@ -741563,7 +755489,7 @@ "time": 135.175, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 3186 + "sulfur": 1195 }, { "group": "melee", @@ -741666,10 +755592,10 @@ "which": "hard", "toolId": "-1506397857", "caption": null, - "quantity": 58, + "quantity": 56, "quantityTypeId": null, - "time": 4224, - "timeString": "1 hour 10 min 24 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -741692,8 +755618,8 @@ "caption": null, "quantity": 6, "quantityTypeId": null, - "time": 422, - "timeString": "7 min 2 sec", + "time": 318, + "timeString": "5 min 18 sec", "fuel": null, "sulfur": null }, @@ -741899,7 +755825,7 @@ "time": 175.15, "timeString": "2 min 55 sec", "fuel": null, - "sulfur": 5559 + "sulfur": 2085 }, { "group": "guns", @@ -741935,7 +755861,7 @@ "time": 86.2, "timeString": "1 min 26 sec", "fuel": null, - "sulfur": 2786 + "sulfur": 1045 }, { "group": "guns", @@ -741995,7 +755921,7 @@ "time": 182.65, "timeString": "3 min 2 sec", "fuel": null, - "sulfur": 8340 + "sulfur": 2781 }, { "group": "guns", @@ -742055,7 +755981,7 @@ "time": 91.325, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 4180 + "sulfur": 1394 }, { "group": "guns", @@ -742064,8 +755990,8 @@ "caption": "Pistol Bullet", "quantity": 556, "quantityTypeId": "785728077", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, "sulfur": 1390 }, @@ -742076,8 +756002,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 175, "quantityTypeId": "51984655", - "time": 69.7, - "timeString": "1 min 9 sec", + "time": 61.9, + "timeString": "1 min 1 sec", "fuel": null, "sulfur": 1458 }, @@ -742088,10 +756014,10 @@ "caption": "HV Pistol Ammo", "quantity": 556, "quantityTypeId": "-1691396643", - "time": 145.2, - "timeString": "2 min 25 sec", + "time": 125.7, + "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 7411 + "sulfur": 2780 }, { "group": "guns", @@ -742100,8 +756026,8 @@ "caption": "Pistol Bullet", "quantity": 278, "quantityTypeId": "785728077", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, "sulfur": 695 }, @@ -742112,8 +756038,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 133, "quantityTypeId": "51984655", - "time": 57.7, - "timeString": "57 sec", + "time": 53.8, + "timeString": "53 sec", "fuel": null, "sulfur": 1108 }, @@ -742124,10 +756050,10 @@ "caption": "HV Pistol Ammo", "quantity": 278, "quantityTypeId": "-1691396643", - "time": 70.6, - "timeString": "1 min 10 sec", + "time": 62.8, + "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 3706 + "sulfur": 1390 }, { "group": "guns", @@ -742475,7 +756401,7 @@ "time": 142.86, "timeString": "2 min 22 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "guns", @@ -742511,7 +756437,7 @@ "time": 71.43, "timeString": "1 min 11 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 }, { "group": "melee", @@ -742630,12 +756556,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 17, + "quantity": 9, "quantityTypeId": null, - "time": 96, - "timeString": "1 min 36 sec", - "fuel": 4301, - "sulfur": 10370 + "time": 48, + "timeString": "48 sec", + "fuel": 675, + "sulfur": 2700 }, { "group": "explosive", @@ -742671,7 +756597,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "turret", @@ -742755,7 +756681,7 @@ "time": 92.1224, "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 6800 + "sulfur": 2268 }, { "group": "explosive", @@ -742815,7 +756741,7 @@ "time": 535.3, "timeString": "8 min 55 sec", "fuel": null, - "sulfur": 4260 + "sulfur": 1421 }, { "group": "explosive", @@ -743019,7 +756945,7 @@ "time": 111.8125, "timeString": "1 min 51 sec", "fuel": null, - "sulfur": 5665 + "sulfur": 2125 }, { "group": "guns", @@ -743079,7 +757005,7 @@ "time": 62.375, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 5920 + "sulfur": 1974 }, { "group": "guns", @@ -743127,7 +757053,7 @@ "time": 568, "timeString": "9 min 28 sec", "fuel": null, - "sulfur": 4260 + "sulfur": 1421 }, { "group": "guns", @@ -743175,7 +757101,7 @@ "time": 105.2, "timeString": "1 min 45 sec", "fuel": null, - "sulfur": 8500 + "sulfur": 2835 }, { "group": "guns", @@ -743223,7 +757149,7 @@ "time": 46.08, "timeString": "46 sec", "fuel": null, - "sulfur": 5240 + "sulfur": 1748 }, { "group": "guns", @@ -743271,7 +757197,7 @@ "time": 108.525, "timeString": "1 min 48 sec", "fuel": null, - "sulfur": 6800 + "sulfur": 2268 }, { "group": "guns", @@ -743355,7 +757281,31 @@ "time": 112.55, "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 5039 + "sulfur": 1890 + }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 107, + "quantityTypeId": null, + "time": 10.6, + "timeString": "10 sec", + "fuel": 107, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 454, + "quantityTypeId": "-1211166256", + "time": 48.7, + "timeString": "48 sec", + "fuel": null, + "sulfur": 1512 }, { "group": "explosive", @@ -743403,7 +757353,7 @@ "time": 103.8, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 6052 + "sulfur": 2270 }, { "group": "guns", @@ -743487,7 +757437,7 @@ "time": 229.95, "timeString": "3 min 49 sec", "fuel": null, - "sulfur": 4132 + "sulfur": 1550 }, { "group": "guns", @@ -743523,7 +757473,7 @@ "time": 278.375, "timeString": "4 min 38 sec", "fuel": null, - "sulfur": 6478 + "sulfur": 2430 }, { "group": "explosive", @@ -743619,7 +757569,7 @@ "time": 179.1, "timeString": "2 min 59 sec", "fuel": null, - "sulfur": 5665 + "sulfur": 2125 }, { "group": "guns", @@ -743679,7 +757629,7 @@ "time": 184.05, "timeString": "3 min 4 sec", "fuel": null, - "sulfur": 8500 + "sulfur": 2835 }, { "group": "guns", @@ -743688,8 +757638,8 @@ "caption": "Pistol Bullet", "quantity": 567, "quantityTypeId": "785728077", - "time": 146.3, - "timeString": "2 min 26 sec", + "time": 126.8, + "timeString": "2 min 6 sec", "fuel": null, "sulfur": 1418 }, @@ -743700,8 +757650,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 98, "quantityTypeId": "51984655", - "time": 25.3, - "timeString": "25 sec", + "time": 21.4, + "timeString": "21 sec", "fuel": null, "sulfur": 816 }, @@ -743712,10 +757662,10 @@ "caption": "HV Pistol Ammo", "quantity": 567, "quantityTypeId": "-1691396643", - "time": 146.3, - "timeString": "2 min 26 sec", + "time": 126.8, + "timeString": "2 min 6 sec", "fuel": null, - "sulfur": 7558 + "sulfur": 2835 }, { "group": "guns", @@ -743799,7 +757749,7 @@ "time": 144.03, "timeString": "2 min 24 sec", "fuel": null, - "sulfur": 6052 + "sulfur": 2270 }, { "group": "melee", @@ -743814,13 +757764,13 @@ "sulfur": null } ], - "Bradley APC": [ + "Bike": [ { "group": "explosive", "which": null, "toolId": "-1843426638", "caption": null, - "quantity": 7, + "quantity": 1, "quantityTypeId": null, "time": 0, "timeString": "0 sec", @@ -743832,240 +757782,10 @@ "which": null, "toolId": "349762871", "caption": null, - "quantity": 82, - "quantityTypeId": null, - "time": 105.2, - "timeString": "1 min 45 sec", - "fuel": null, - "sulfur": null - }, - { - "group": "explosive", - "which": null, - "toolId": "-742865266", - "caption": null, "quantity": 11, "quantityTypeId": null, - "time": null, - "timeString": null, - "fuel": 330, - "sulfur": 15400 - }, - { - "group": "explosive", - "which": null, - "toolId": "-1841918730", - "caption": null, - "quantity": 7, - "quantityTypeId": null, - "time": 36, - "timeString": "36 sec", - "fuel": null, - "sulfur": 1400 - }, - { - "group": "torpedo", - "which": null, - "toolId": "-1671551935", - "caption": null, - "quantity": 7, - "quantityTypeId": null, - "time": 40, - "timeString": "40 sec", - "fuel": null, - "sulfur": 140 - }, - { - "group": "explosive", - "which": null, - "toolId": "1248356124", - "caption": null, - "quantity": 3, - "quantityTypeId": null, - "time": 13, - "timeString": "13 sec", - "fuel": 180, - "sulfur": 6600 - }, - { - "group": "throw", - "which": null, - "toolId": "-1536855921", - "caption": "Throw", - "quantity": 20000, - "quantityTypeId": null, - "time": null, - "timeString": null, - "fuel": null, - "sulfur": null - }, - { - "group": "guns", - "which": null, - "toolId": "1545779598", - "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 571, - "quantityTypeId": "-1321651331", - "time": 157.0483, - "timeString": "2 min 37 sec", - "fuel": null, - "sulfur": 14275 - }, - { - "group": "explosive", - "which": null, - "toolId": "1840822026", - "caption": null, - "quantity": 191, - "quantityTypeId": null, - "time": 232.95, - "timeString": "3 min 52 sec", - "fuel": null, - "sulfur": 22920 - }, - { - "group": "guns", - "which": null, - "toolId": "1588298435", - "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 570, - "quantityTypeId": "-1321651331", - "time": 1435.9, - "timeString": "23 min 55 sec", - "fuel": null, - "sulfur": 14250 - }, - { - "group": "explosive", - "which": null, - "toolId": "143803535", - "caption": null, - "quantity": 40, - "quantityTypeId": null, - "time": 50.5, - "timeString": "50 sec", - "fuel": null, - "sulfur": 2400 - }, - { - "group": "guns", - "which": null, - "toolId": "-1214542497", - "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 571, - "quantityTypeId": "-1321651331", - "time": 128.625, - "timeString": "2 min 8 sec", - "fuel": null, - "sulfur": 14275 - }, - { - "group": "guns", - "which": null, - "toolId": "-778367295", - "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 570, - "quantityTypeId": "-1321651331", - "time": 1524.6, - "timeString": "25 min 24 sec", - "fuel": null, - "sulfur": 14250 - }, - { - "group": "guns", - "which": null, - "toolId": "-1812555177", - "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 571, - "quantityTypeId": "-1321651331", - "time": 142.12, - "timeString": "2 min 22 sec", - "fuel": null, - "sulfur": 14275 - }, - { - "group": "guns", - "which": null, - "toolId": "-2069578888", - "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 570, - "quantityTypeId": "-1321651331", - "time": 105.18, - "timeString": "1 min 45 sec", - "fuel": null, - "sulfur": 14250 - }, - { - "group": "guns", - "which": null, - "toolId": "28201841", - "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 571, - "quantityTypeId": "-1321651331", - "time": 185.85, - "timeString": "3 min 5 sec", - "fuel": null, - "sulfur": 14275 - }, - { - "group": "explosive", - "which": null, - "toolId": "-1878475007", - "caption": null, - "quantity": 20, - "quantityTypeId": null, - "time": 37.5, - "timeString": "37 sec", - "fuel": null, - "sulfur": 9600 - }, - { - "group": "explosive", - "which": null, - "toolId": "-1321651331", - "caption": "Semi-Automatic Rifle", - "quantity": 571, - "quantityTypeId": null, - "time": 247.625, - "timeString": "4 min 7 sec", - "fuel": null, - "sulfur": 14275 - }, - { - "group": "guns", - "which": null, - "toolId": "-904863145", - "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 571, - "quantityTypeId": "-1321651331", - "time": 247.625, - "timeString": "4 min 7 sec", - "fuel": null, - "sulfur": 14275 - } - ], - "Duo Submarine": [ - { - "group": "explosive", - "which": null, - "toolId": "-1843426638", - "caption": null, - "quantity": 2, - "quantityTypeId": null, - "time": 0, - "timeString": "0 sec", - "fuel": null, - "sulfur": null - }, - { - "group": "explosive", - "which": null, - "toolId": "349762871", - "caption": null, - "quantity": 13, - "quantityTypeId": null, - "time": 16, - "timeString": "16 sec", + "time": 9.6, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -744086,24 +757806,24 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 560, + "quantity": 100, "quantityTypeId": null, - "time": 3354, - "timeString": "55 min 54 sec", - "fuel": 141680, - "sulfur": 341600 + "time": 594, + "timeString": "9 min 54 sec", + "fuel": 7500, + "sulfur": 30000 }, { "group": "explosive", "which": null, "toolId": "-1841918730", "caption": null, - "quantity": 2, + "quantity": 1, "quantityTypeId": null, - "time": 6, - "timeString": "6 sec", + "time": 1, + "timeString": "1 sec", "fuel": null, - "sulfur": 400 + "sulfur": 200 }, { "group": "torpedo", @@ -744115,17 +757835,17 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", "which": null, "toolId": "-2073432256", "caption": null, - "quantity": 42, + "quantity": 15, "quantityTypeId": null, - "time": 653.5, - "timeString": "10 min 53 sec", + "time": 233.1, + "timeString": "3 min 53 sec", "fuel": null, "sulfur": null }, @@ -744134,10 +757854,10 @@ "which": null, "toolId": "-2073432256", "caption": "Throw", - "quantity": 70, + "quantity": 25, "quantityTypeId": null, - "time": 2625, - "timeString": "43 min 45 sec", + "time": 937.5, + "timeString": "15 min 37 sec", "fuel": null, "sulfur": null }, @@ -744158,10 +757878,10 @@ "which": null, "toolId": "-196667575", "caption": null, - "quantity": 72, + "quantity": 26, "quantityTypeId": null, - "time": 1005, - "timeString": "16 min 45 sec", + "time": 359, + "timeString": "5 min 59 sec", "fuel": null, "sulfur": null }, @@ -744170,10 +757890,10 @@ "which": null, "toolId": "1488979457", "caption": null, - "quantity": 15, + "quantity": 6, "quantityTypeId": null, - "time": 189.05, - "timeString": "3 min 9 sec", + "time": 67.55, + "timeString": "1 min 7 sec", "fuel": null, "sulfur": null }, @@ -744184,8 +757904,8 @@ "caption": "Workbench Refill", "quantity": 1, "quantityTypeId": null, - "time": 253.05, - "timeString": "4 min 13 sec", + "time": 80.55, + "timeString": "1 min 20 sec", "fuel": null, "sulfur": null }, @@ -744194,10 +757914,10 @@ "which": null, "toolId": "-1536855921", "caption": null, - "quantity": 54, + "quantity": 20, "quantityTypeId": null, - "time": 1453, - "timeString": "24 min 13 sec", + "time": 519, + "timeString": "8 min 39 sec", "fuel": null, "sulfur": null }, @@ -744206,10 +757926,10 @@ "which": null, "toolId": "-1536855921", "caption": "Throw", - "quantity": 35, + "quantity": 13, "quantityTypeId": null, - "time": 1297.5, - "timeString": "21 min 37 sec", + "time": 463.5, + "timeString": "7 min 43 sec", "fuel": null, "sulfur": null }, @@ -744218,12 +757938,12 @@ "which": null, "toolId": "1545779598", "caption": "5.56 Rifle Ammo", - "quantity": 47, + "quantity": 50, "quantityTypeId": "-1211166256", - "time": 10.3985, + "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 157 + "sulfur": 167 }, { "group": "guns", @@ -744242,48 +757962,48 @@ "which": null, "toolId": "1545779598", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 46, + "quantity": 48, "quantityTypeId": "605467368", - "time": 10.2652, + "time": 10.5318, "timeString": "10 sec", "fuel": null, - "sulfur": 575 + "sulfur": 600 }, { "group": "guns", "which": null, "toolId": "1545779598", "caption": "HV 5.56 Rifle Ammo", - "quantity": 47, + "quantity": 50, "quantityTypeId": "1712070256", - "time": 10.3985, + "time": 10.7984, "timeString": "10 sec", "fuel": null, - "sulfur": 940 + "sulfur": 334 }, { "group": "explosive", "which": null, "toolId": "1840822026", "caption": null, - "quantity": 26, + "quantity": 19, "quantityTypeId": null, - "time": 34.95, - "timeString": "34 sec", + "time": 26.55, + "timeString": "26 sec", "fuel": null, - "sulfur": 3120 + "sulfur": 2280 }, { "group": "guns", "which": null, "toolId": "1588298435", "caption": "5.56 Rifle Ammo", - "quantity": 30, + "quantity": 32, "quantityTypeId": "-1211166256", - "time": 72.4, - "timeString": "1 min 12 sec", + "time": 75.8, + "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 100 + "sulfur": 107 }, { "group": "guns", @@ -744302,34 +758022,34 @@ "which": null, "toolId": "1588298435", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 29, + "quantity": 30, "quantityTypeId": "605467368", - "time": 70.7, - "timeString": "1 min 10 sec", + "time": 72.4, + "timeString": "1 min 12 sec", "fuel": null, - "sulfur": 363 + "sulfur": 375 }, { "group": "guns", "which": null, "toolId": "1588298435", "caption": "HV 5.56 Rifle Ammo", - "quantity": 30, + "quantity": 32, "quantityTypeId": "1712070256", - "time": 72.4, - "timeString": "1 min 12 sec", + "time": 75.8, + "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 600 + "sulfur": 213 }, { "group": "melee", "which": null, "toolId": "1711033574", "caption": null, - "quantity": 47, + "quantity": 17, "quantityTypeId": null, - "time": 862.9, - "timeString": "14 min 22 sec", + "time": 307.9, + "timeString": "5 min 7 sec", "fuel": null, "sulfur": null }, @@ -744338,10 +758058,10 @@ "which": null, "toolId": "1711033574", "caption": "Throw", - "quantity": 59, + "quantity": 21, "quantityTypeId": null, - "time": 1750.5, - "timeString": "29 min 10 sec", + "time": 625.5, + "timeString": "10 min 25 sec", "fuel": null, "sulfur": null }, @@ -744350,10 +758070,10 @@ "which": null, "toolId": "1814288539", "caption": null, - "quantity": 44, + "quantity": 16, "quantityTypeId": null, - "time": 808.8, - "timeString": "13 min 28 sec", + "time": 288.7, + "timeString": "4 min 48 sec", "fuel": null, "sulfur": null }, @@ -744362,10 +758082,10 @@ "which": null, "toolId": "1814288539", "caption": "Throw", - "quantity": 70, + "quantity": 25, "quantityTypeId": null, - "time": 2625, - "timeString": "43 min 45 sec", + "time": 937.5, + "timeString": "15 min 37 sec", "fuel": null, "sulfur": null }, @@ -744374,10 +758094,10 @@ "which": null, "toolId": "1443579727", "caption": "High Velocity Arrow", - "quantity": 350, + "quantity": 125, "quantityTypeId": "-1023065463", - "time": 349, - "timeString": "5 min 49 sec", + "time": 124, + "timeString": "2 min 4 sec", "fuel": null, "sulfur": null }, @@ -744386,10 +758106,10 @@ "which": null, "toolId": "1443579727", "caption": "Wooden Arrow", - "quantity": 280, + "quantity": 100, "quantityTypeId": "-1234735557", - "time": 279, - "timeString": "4 min 39 sec", + "time": 99, + "timeString": "1 min 39 sec", "fuel": null, "sulfur": null }, @@ -744398,10 +758118,10 @@ "which": null, "toolId": "1443579727", "caption": "Bone Arrow", - "quantity": 350, + "quantity": 125, "quantityTypeId": "215754713", - "time": 349, - "timeString": "5 min 49 sec", + "time": 124, + "timeString": "2 min 4 sec", "fuel": null, "sulfur": null }, @@ -744410,11 +758130,11 @@ "which": null, "toolId": "14241751", "caption": "Hunting Bow", - "quantity": 234, + "quantity": 84, "quantityTypeId": null, - "time": 233, - "timeString": "3 min 53 sec", - "fuel": 1170, + "time": 83, + "timeString": "1 min 23 sec", + "fuel": 420, "sulfur": null }, { @@ -744422,11 +758142,11 @@ "which": null, "toolId": "1443579727", "caption": "Fire Arrow", - "quantity": 234, + "quantity": 84, "quantityTypeId": "14241751", - "time": 233, - "timeString": "3 min 53 sec", - "fuel": 1170, + "time": 83, + "timeString": "1 min 23 sec", + "fuel": 420, "sulfur": null }, { @@ -744434,10 +758154,10 @@ "which": null, "toolId": "1104520648", "caption": null, - "quantity": 48, + "quantity": 17, "quantityTypeId": null, - "time": 338.8, - "timeString": "5 min 38 sec", + "time": null, + "timeString": null, "fuel": null, "sulfur": null }, @@ -744446,10 +758166,10 @@ "which": null, "toolId": "-1978999529", "caption": null, - "quantity": 15, + "quantity": 6, "quantityTypeId": null, - "time": 598, - "timeString": "9 min 58 sec", + "time": 215, + "timeString": "3 min 35 sec", "fuel": null, "sulfur": null }, @@ -744458,10 +758178,10 @@ "which": null, "toolId": "-1978999529", "caption": "Throw", - "quantity": 10, + "quantity": 4, "quantityTypeId": null, - "time": 876, - "timeString": "14 min 36 sec", + "time": 313.5, + "timeString": "5 min 13 sec", "fuel": null, "sulfur": null }, @@ -744470,10 +758190,10 @@ "which": null, "toolId": "884424049", "caption": "High Velocity Arrow", - "quantity": 175, + "quantity": 63, "quantityTypeId": "-1023065463", - "time": 699, - "timeString": "11 min 39 sec", + "time": 251, + "timeString": "4 min 11 sec", "fuel": null, "sulfur": null }, @@ -744482,10 +758202,10 @@ "which": null, "toolId": "884424049", "caption": "Wooden Arrow", - "quantity": 140, + "quantity": 50, "quantityTypeId": "-1234735557", - "time": 559, - "timeString": "9 min 19 sec", + "time": 199, + "timeString": "3 min 19 sec", "fuel": null, "sulfur": null }, @@ -744494,10 +758214,10 @@ "which": null, "toolId": "884424049", "caption": "Bone Arrow", - "quantity": 175, + "quantity": 63, "quantityTypeId": "215754713", - "time": 699, - "timeString": "11 min 39 sec", + "time": 251, + "timeString": "4 min 11 sec", "fuel": null, "sulfur": null }, @@ -744506,11 +758226,11 @@ "which": null, "toolId": "884424049", "caption": "Fire Arrow", - "quantity": 140, + "quantity": 50, "quantityTypeId": "14241751", - "time": 559, - "timeString": "9 min 19 sec", - "fuel": 700, + "time": 199, + "timeString": "3 min 19 sec", + "fuel": 250, "sulfur": null }, { @@ -744518,10 +758238,10 @@ "which": null, "toolId": "1965232394", "caption": "High Velocity Arrow", - "quantity": 292, + "quantity": 105, "quantityTypeId": "-1023065463", - "time": 1047.6, - "timeString": "17 min 27 sec", + "time": 374.4, + "timeString": "6 min 14 sec", "fuel": null, "sulfur": null }, @@ -744530,10 +758250,10 @@ "which": null, "toolId": "1965232394", "caption": "Wooden Arrow", - "quantity": 234, + "quantity": 84, "quantityTypeId": "-1234735557", - "time": 838.8, - "timeString": "13 min 58 sec", + "time": 298.8, + "timeString": "4 min 58 sec", "fuel": null, "sulfur": null }, @@ -744542,10 +758262,10 @@ "which": null, "toolId": "1965232394", "caption": "Bone Arrow", - "quantity": 292, + "quantity": 105, "quantityTypeId": "215754713", - "time": 1047.6, - "timeString": "17 min 27 sec", + "time": 374.4, + "timeString": "6 min 14 sec", "fuel": null, "sulfur": null }, @@ -744554,11 +758274,11 @@ "which": null, "toolId": "1965232394", "caption": "Fire Arrow", - "quantity": 206, + "quantity": 74, "quantityTypeId": "14241751", - "time": 738, - "timeString": "12 min 18 sec", - "fuel": 1030, + "time": 262.8, + "timeString": "4 min 22 sec", + "fuel": 370, "sulfur": null }, { @@ -744566,12 +758286,12 @@ "which": null, "toolId": "-765183617", "caption": "Handmade Shell", - "quantity": 13, + "quantity": 14, "quantityTypeId": "588596902", - "time": 36, + "time": 36.5, "timeString": "36 sec", "fuel": null, - "sulfur": 65 + "sulfur": 70 }, { "group": "guns", @@ -744590,36 +758310,36 @@ "which": null, "toolId": "-765183617", "caption": "12 Gauge Incendiary Shell", - "quantity": 22, + "quantity": 20, "quantityTypeId": "-1036635990", - "time": null, - "timeString": null, + "time": 54.5, + "timeString": "54 sec", "fuel": null, - "sulfur": 440 + "sulfur": 400 }, { "group": "guns", "which": null, "toolId": "-765183617", "caption": "12 Gauge Slug", - "quantity": 30, + "quantity": 32, "quantityTypeId": "-727717969", - "time": 84.5, - "timeString": "1 min 24 sec", + "time": 90.5, + "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 300 + "sulfur": 320 }, { "group": "guns", "which": null, "toolId": "-75944661", "caption": "Handmade Shell", - "quantity": 13, + "quantity": 14, "quantityTypeId": "588596902", - "time": 32.84, - "timeString": "32 sec", + "time": 35.52, + "timeString": "35 sec", "fuel": null, - "sulfur": 65 + "sulfur": 70 }, { "group": "guns", @@ -744638,47 +758358,47 @@ "which": null, "toolId": "-75944661", "caption": "12 Gauge Incendiary Shell", - "quantity": 22, + "quantity": 20, "quantityTypeId": "-1036635990", - "time": 56.96, - "timeString": "56 sec", + "time": 51.6, + "timeString": "51 sec", "fuel": null, - "sulfur": 440 + "sulfur": 400 }, { "group": "guns", "which": null, "toolId": "-75944661", "caption": "12 Gauge Slug", - "quantity": 30, + "quantity": 32, "quantityTypeId": "-727717969", - "time": 78.4, - "timeString": "1 min 18 sec", + "time": 83.76, + "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 300 + "sulfur": 320 }, { "group": "explosive", "which": null, "toolId": "143803535", "caption": null, - "quantity": 7, + "quantity": 5, "quantityTypeId": null, - "time": 10.9, - "timeString": "10 sec", + "time": 8.5, + "timeString": "8 sec", "fuel": null, - "sulfur": 420 + "sulfur": 300 }, { "group": "explosive", "which": null, "toolId": "-1215753368", "caption": null, - "quantity": 4118, + "quantity": 1471, "quantityTypeId": null, - "time": 551.1, - "timeString": "9 min 11 sec", - "fuel": 4118, + "time": 194.6, + "timeString": "3 min 14 sec", + "fuel": 1471, "sulfur": null }, { @@ -744686,46 +758406,46 @@ "which": null, "toolId": "1914691295", "caption": "Pistol Bullet", - "quantity": 59, + "quantity": 63, "quantityTypeId": "785728077", - "time": 14.8875, - "timeString": "14 sec", + "time": 15.3375, + "timeString": "15 sec", "fuel": null, - "sulfur": 148 + "sulfur": 158 }, { "group": "guns", "which": null, "toolId": "1914691295", "caption": "Incendiary Pistol Bullet", - "quantity": 58, + "quantity": 59, "quantityTypeId": "51984655", - "time": 14.775, + "time": 14.8875, "timeString": "14 sec", "fuel": null, - "sulfur": 483 + "sulfur": 491 }, { "group": "guns", "which": null, "toolId": "1914691295", "caption": "HV Pistol Ammo", - "quantity": 59, + "quantity": 63, "quantityTypeId": "-1691396643", - "time": 14.8875, - "timeString": "14 sec", + "time": 15.3375, + "timeString": "15 sec", "fuel": null, - "sulfur": 786 + "sulfur": 315 }, { "group": "guns", "which": null, "toolId": "-1123473824", "caption": "40mm Shotgun Round", - "quantity": 9, + "quantity": 10, "quantityTypeId": "1055319033", - "time": 8.8, - "timeString": "8 sec", + "time": 9.2, + "timeString": "9 sec", "fuel": null, "sulfur": null }, @@ -744734,10 +758454,10 @@ "which": null, "toolId": "-1252059217", "caption": null, - "quantity": 10, + "quantity": 4, "quantityTypeId": null, - "time": 582.3, - "timeString": "9 min 42 sec", + "time": 208.2, + "timeString": "3 min 28 sec", "fuel": null, "sulfur": null }, @@ -744746,10 +758466,10 @@ "which": null, "toolId": "-1252059217", "caption": "Throw", - "quantity": 12, + "quantity": 5, "quantityTypeId": null, - "time": 1750.5, - "timeString": "29 min 10 sec", + "time": 625.5, + "timeString": "10 min 25 sec", "fuel": null, "sulfur": null }, @@ -744758,12 +758478,12 @@ "which": null, "toolId": "-1214542497", "caption": "5.56 Rifle Ammo", - "quantity": 41, + "quantity": 44, "quantityTypeId": "-1211166256", - "time": 5, + "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 137 + "sulfur": 147 }, { "group": "guns", @@ -744782,34 +758502,34 @@ "which": null, "toolId": "-1214542497", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 40, + "quantity": 42, "quantityTypeId": "605467368", - "time": 4.875, - "timeString": "4 sec", + "time": 5.125, + "timeString": "5 sec", "fuel": null, - "sulfur": 500 + "sulfur": 525 }, { "group": "guns", "which": null, "toolId": "-1214542497", "caption": "HV 5.56 Rifle Ammo", - "quantity": 41, + "quantity": 44, "quantityTypeId": "1712070256", - "time": 5, + "time": 5.375, "timeString": "5 sec", "fuel": null, - "sulfur": 820 + "sulfur": 293 }, { "group": "melee", "which": null, "toolId": "2040726127", "caption": null, - "quantity": 39, + "quantity": 14, "quantityTypeId": null, - "time": 388, - "timeString": "6 min 28 sec", + "time": 138.3, + "timeString": "2 min 18 sec", "fuel": null, "sulfur": null }, @@ -744818,10 +758538,10 @@ "which": null, "toolId": "2040726127", "caption": "Throw", - "quantity": 14, + "quantity": 5, "quantityTypeId": null, - "time": 525, - "timeString": "8 min 45 sec", + "time": 187.5, + "timeString": "3 min 7 sec", "fuel": null, "sulfur": null }, @@ -744830,12 +758550,12 @@ "which": null, "toolId": "-778367295", "caption": "5.56 Rifle Ammo", - "quantity": 30, + "quantity": 32, "quantityTypeId": "-1211166256", - "time": 77.4, - "timeString": "1 min 17 sec", + "time": 83, + "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 100 + "sulfur": 107 }, { "group": "guns", @@ -744854,36 +758574,36 @@ "which": null, "toolId": "-778367295", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 29, + "quantity": 30, "quantityTypeId": "605467368", - "time": 74.8, - "timeString": "1 min 14 sec", + "time": 77.4, + "timeString": "1 min 17 sec", "fuel": null, - "sulfur": 363 + "sulfur": 375 }, { "group": "guns", "which": null, "toolId": "-778367295", "caption": "HV 5.56 Rifle Ammo", - "quantity": 30, + "quantity": 32, "quantityTypeId": "1712070256", - "time": 77.4, - "timeString": "1 min 17 sec", + "time": 83, + "timeString": "1 min 23 sec", "fuel": null, - "sulfur": 600 + "sulfur": 213 }, { "group": "guns", "which": null, "toolId": "-1812555177", "caption": "5.56 Rifle Ammo", - "quantity": 59, + "quantity": 63, "quantityTypeId": "-1211166256", - "time": 10.84, - "timeString": "10 sec", + "time": 15.2, + "timeString": "15 sec", "fuel": null, - "sulfur": 196 + "sulfur": 210 }, { "group": "guns", @@ -744902,84 +758622,84 @@ "which": null, "toolId": "-1812555177", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 58, + "quantity": 59, "quantityTypeId": "605467368", - "time": 10.72, + "time": 10.84, "timeString": "10 sec", "fuel": null, - "sulfur": 725 + "sulfur": 738 }, { "group": "guns", "which": null, "toolId": "-1812555177", "caption": "HV 5.56 Rifle Ammo", - "quantity": 59, + "quantity": 63, "quantityTypeId": "1712070256", - "time": 10.84, - "timeString": "10 sec", + "time": 15.2, + "timeString": "15 sec", "fuel": null, - "sulfur": 1180 + "sulfur": 420 }, { "group": "guns", "which": null, "toolId": "-2069578888", "caption": "5.56 Rifle Ammo", - "quantity": 36, + "quantity": 39, "quantityTypeId": "-1211166256", - "time": 4.2, + "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 120 + "sulfur": 130 }, { "group": "guns", "which": null, "toolId": "-2069578888", "caption": "Explosive 5.56 Rifle Ammo", - "quantity": 26, + "quantity": 27, "quantityTypeId": "-1321651331", - "time": 3, + "time": 3.12, "timeString": "3 sec", "fuel": null, - "sulfur": 650 + "sulfur": 675 }, { "group": "guns", "which": null, "toolId": "-2069578888", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 36, + "quantity": 37, "quantityTypeId": "605467368", - "time": 4.2, + "time": 4.32, "timeString": "4 sec", "fuel": null, - "sulfur": 450 + "sulfur": 463 }, { "group": "guns", "which": null, "toolId": "-2069578888", "caption": "HV 5.56 Rifle Ammo", - "quantity": 36, + "quantity": 39, "quantityTypeId": "1712070256", - "time": 4.2, + "time": 4.56, "timeString": "4 sec", "fuel": null, - "sulfur": 720 + "sulfur": 260 }, { "group": "guns", "which": null, "toolId": "28201841", "caption": "5.56 Rifle Ammo", - "quantity": 47, + "quantity": 50, "quantityTypeId": "-1211166256", - "time": 14.2, + "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 157 + "sulfur": 167 }, { "group": "guns", @@ -744998,118 +758718,118 @@ "which": null, "toolId": "28201841", "caption": "Incendiary 5.56 Rifle Ammo", - "quantity": 46, + "quantity": 48, "quantityTypeId": "605467368", - "time": 14.025, + "time": 14.375, "timeString": "14 sec", "fuel": null, - "sulfur": 575 + "sulfur": 600 }, { "group": "guns", "which": null, "toolId": "28201841", "caption": "HV 5.56 Rifle Ammo", - "quantity": 47, + "quantity": 50, "quantityTypeId": "1712070256", - "time": 14.2, + "time": 14.725, "timeString": "14 sec", "fuel": null, - "sulfur": 940 + "sulfur": 334 }, { "group": "guns", "which": null, "toolId": "678698219", "caption": "Handmade Shell", - "quantity": 17, + "quantity": 18, "quantityTypeId": "588596902", - "time": 15.8, - "timeString": "15 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, - "sulfur": 85 + "sulfur": 90 }, { "group": "guns", "which": null, "toolId": "678698219", "caption": "12 Gauge Buckshot", - "quantity": 14, + "quantity": 15, "quantityTypeId": "-1685290200", - "time": 14.9, - "timeString": "14 sec", + "time": 15.2, + "timeString": "15 sec", "fuel": null, - "sulfur": 140 + "sulfur": 150 }, { "group": "guns", "which": null, "toolId": "678698219", "caption": "12 Gauge Incendiary Shell", - "quantity": 27, + "quantity": 25, "quantityTypeId": "-1036635990", - "time": 29.8, + "time": 29.2, "timeString": "29 sec", "fuel": null, - "sulfur": 540 + "sulfur": 500 }, { "group": "guns", "which": null, "toolId": "678698219", "caption": "12 Gauge Slug", - "quantity": 37, + "quantity": 40, "quantityTypeId": "-727717969", - "time": 43.8, - "timeString": "43 sec", + "time": 44.7, + "timeString": "44 sec", "fuel": null, - "sulfur": 370 + "sulfur": 400 }, { "group": "guns", "which": null, "toolId": "-852563019", "caption": "Pistol Bullet", - "quantity": 52, + "quantity": 56, "quantityTypeId": "785728077", - "time": 14.37, + "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 130 + "sulfur": 140 }, { "group": "guns", "which": null, "toolId": "-852563019", "caption": "Incendiary Pistol Bullet", - "quantity": 51, + "quantity": 53, "quantityTypeId": "51984655", - "time": 14.22, + "time": 14.52, "timeString": "14 sec", "fuel": null, - "sulfur": 425 + "sulfur": 441 }, { "group": "guns", "which": null, "toolId": "-852563019", "caption": "HV Pistol Ammo", - "quantity": 52, + "quantity": 56, "quantityTypeId": "-1691396643", - "time": 14.37, + "time": 14.97, "timeString": "14 sec", "fuel": null, - "sulfur": 693 + "sulfur": 280 }, { "group": "melee", "which": null, "toolId": "-1966748496", "caption": null, - "quantity": 14, + "quantity": 5, "quantityTypeId": null, - "time": 481, - "timeString": "8 min 1 sec", + "time": 172, + "timeString": "2 min 52 sec", "fuel": null, "sulfur": null }, @@ -745118,10 +758838,10 @@ "which": null, "toolId": "-1966748496", "caption": "Throw", - "quantity": 10, + "quantity": 4, "quantityTypeId": null, - "time": 700.5, - "timeString": "11 min 40 sec", + "time": 250.5, + "timeString": "4 min 10 sec", "fuel": null, "sulfur": null }, @@ -745130,10 +758850,10 @@ "which": null, "toolId": "-1137865085", "caption": null, - "quantity": 20, + "quantity": 7, "quantityTypeId": null, - "time": 519, - "timeString": "8 min 39 sec", + "time": 185, + "timeString": "3 min 5 sec", "fuel": null, "sulfur": null }, @@ -745142,23 +758862,47 @@ "which": null, "toolId": "-1137865085", "caption": "Throw", - "quantity": 18, + "quantity": 7, "quantityTypeId": null, - "time": 1312.5, - "timeString": "21 min 52 sec", + "time": 469.5, + "timeString": "7 min 49 sec", "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1250, + "quantityTypeId": null, + "time": 152.1, + "timeString": "2 min 32 sec", + "fuel": 1250, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "-1211166256", + "time": 6.6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 223 + }, { "group": "explosive", "which": null, "toolId": "1556365900", "caption": null, - "quantity": 400, + "quantity": 143, "quantityTypeId": null, - "time": 417.5, - "timeString": "6 min 57 sec", - "fuel": 20000, + "time": 160.5, + "timeString": "2 min 40 sec", + "fuel": 7150, "sulfur": null }, { @@ -745166,46 +758910,46 @@ "which": null, "toolId": "1318558775", "caption": "Pistol Bullet", - "quantity": 63, + "quantity": 67, "quantityTypeId": "785728077", - "time": 14, + "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 158 + "sulfur": 168 }, { "group": "guns", "which": null, "toolId": "1318558775", "caption": "Incendiary Pistol Bullet", - "quantity": 62, + "quantity": 63, "quantityTypeId": "51984655", - "time": 13.9, - "timeString": "13 sec", + "time": 14, + "timeString": "14 sec", "fuel": null, - "sulfur": 516 + "sulfur": 525 }, { "group": "guns", "which": null, "toolId": "1318558775", "caption": "HV Pistol Ammo", - "quantity": 63, + "quantity": 67, "quantityTypeId": "-1691396643", - "time": 14, + "time": 14.4, "timeString": "14 sec", "fuel": null, - "sulfur": 840 + "sulfur": 335 }, { "group": "guns", "which": null, "toolId": "1953903201", "caption": "Nailgun Nails", - "quantity": 778, + "quantity": 278, "quantityTypeId": "-2097376851", - "time": 258.15, - "timeString": "4 min 18 sec", + "time": 91.7, + "timeString": "1 min 31 sec", "fuel": null, "sulfur": null }, @@ -745214,10 +758958,10 @@ "which": null, "toolId": "1491189398", "caption": null, - "quantity": 11, + "quantity": 4, "quantityTypeId": null, - "time": 593.75, - "timeString": "9 min 53 sec", + "time": 211.75, + "timeString": "3 min 31 sec", "fuel": null, "sulfur": null }, @@ -745226,10 +758970,10 @@ "which": null, "toolId": "1491189398", "caption": "Throw", - "quantity": 5, + "quantity": 2, "quantityTypeId": null, - "time": 525, - "timeString": "8 min 45 sec", + "time": 187.5, + "timeString": "3 min 7 sec", "fuel": null, "sulfur": null }, @@ -745238,10 +758982,10 @@ "which": null, "toolId": "-1302129395", "caption": null, - "quantity": 10, + "quantity": 4, "quantityTypeId": null, - "time": 885, - "timeString": "14 min 45 sec", + "time": 316.5, + "timeString": "5 min 16 sec", "fuel": null, "sulfur": null }, @@ -745250,10 +758994,10 @@ "which": null, "toolId": "-1302129395", "caption": "Throw", - "quantity": 9, + "quantity": 4, "quantityTypeId": null, - "time": 1312.5, - "timeString": "21 min 52 sec", + "time": 469.5, + "timeString": "7 min 49 sec", "fuel": null, "sulfur": null }, @@ -745262,12 +759006,12 @@ "which": null, "toolId": "-1367281941", "caption": "Handmade Shell", - "quantity": 13, + "quantity": 14, "quantityTypeId": "588596902", - "time": 54, - "timeString": "54 sec", + "time": 58.5, + "timeString": "58 sec", "fuel": null, - "sulfur": 65 + "sulfur": 70 }, { "group": "guns", @@ -745286,106 +759030,106 @@ "which": null, "toolId": "-1367281941", "caption": "12 Gauge Incendiary Shell", - "quantity": 22, + "quantity": 20, "quantityTypeId": "-1036635990", - "time": 94.5, - "timeString": "1 min 34 sec", + "time": 85.5, + "timeString": "1 min 25 sec", "fuel": null, - "sulfur": 440 + "sulfur": 400 }, { "group": "guns", "which": null, "toolId": "-1367281941", "caption": "12 Gauge Slug", - "quantity": 30, + "quantity": 32, "quantityTypeId": "-727717969", - "time": 130.5, - "timeString": "2 min 10 sec", + "time": 139.5, + "timeString": "2 min 19 sec", "fuel": null, - "sulfur": 300 + "sulfur": 320 }, { "group": "guns", "which": null, "toolId": "1373971859", "caption": "Pistol Bullet", - "quantity": 43, + "quantity": 46, "quantityTypeId": "785728077", - "time": 31.5, + "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 108 + "sulfur": 115 }, { "group": "guns", "which": null, "toolId": "1373971859", "caption": "Incendiary Pistol Bullet", - "quantity": 42, + "quantity": 43, "quantityTypeId": "51984655", - "time": 27.75, - "timeString": "27 sec", + "time": 31.5, + "timeString": "31 sec", "fuel": null, - "sulfur": 350 + "sulfur": 358 }, { "group": "guns", "which": null, "toolId": "1373971859", "caption": "HV Pistol Ammo", - "quantity": 43, + "quantity": 46, "quantityTypeId": "-1691396643", - "time": 31.5, + "time": 31.95, "timeString": "31 sec", "fuel": null, - "sulfur": 573 + "sulfur": 230 }, { "group": "guns", "which": null, "toolId": "649912614", "caption": "Pistol Bullet", - "quantity": 67, + "quantity": 72, "quantityTypeId": "785728077", - "time": 37.35, - "timeString": "37 sec", + "time": 38.225, + "timeString": "38 sec", "fuel": null, - "sulfur": 168 + "sulfur": 180 }, { "group": "guns", "which": null, "toolId": "649912614", "caption": "Incendiary Pistol Bullet", - "quantity": 66, + "quantity": 68, "quantityTypeId": "51984655", - "time": 37.175, + "time": 37.525, "timeString": "37 sec", "fuel": null, - "sulfur": 550 + "sulfur": 566 }, { "group": "guns", "which": null, "toolId": "649912614", "caption": "HV Pistol Ammo", - "quantity": 67, + "quantity": 72, "quantityTypeId": "-1691396643", - "time": 37.35, - "timeString": "37 sec", + "time": 38.225, + "timeString": "38 sec", "fuel": null, - "sulfur": 893 + "sulfur": 360 }, { "group": "melee", "which": null, "toolId": "963906841", "caption": null, - "quantity": 40, + "quantity": 15, "quantityTypeId": null, - "time": 1859, - "timeString": "30 min 59 sec", + "time": 664, + "timeString": "11 min 4 sec", "fuel": null, "sulfur": null }, @@ -745394,10 +759138,10 @@ "which": null, "toolId": "963906841", "caption": "Throw", - "quantity": 56, + "quantity": 20, "quantityTypeId": null, - "time": null, - "timeString": null, + "time": 750, + "timeString": "12 min 30 sec", "fuel": null, "sulfur": null }, @@ -745406,10 +759150,10 @@ "which": null, "toolId": "-262590403", "caption": null, - "quantity": 8, + "quantity": 3, "quantityTypeId": null, - "time": 554.5, - "timeString": "9 min 14 sec", + "time": 198.25, + "timeString": "3 min 18 sec", "fuel": null, "sulfur": null }, @@ -745418,10 +759162,10 @@ "which": null, "toolId": "-262590403", "caption": "Throw", - "quantity": 6, + "quantity": 2, "quantityTypeId": null, - "time": 1050, - "timeString": "17 min 30 sec", + "time": 375, + "timeString": "6 min 15 sec", "fuel": null, "sulfur": null }, @@ -745430,10 +759174,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 7, + "quantity": 3, "quantityTypeId": null, - "time": 473, - "timeString": "7 min 53 sec", + "time": 127, + "timeString": "2 min 7 sec", "fuel": null, "sulfur": null }, @@ -745442,10 +759186,10 @@ "which": null, "toolId": "-1506397857", "caption": "Throw", - "quantity": 6, + "quantity": 2, "quantityTypeId": null, - "time": 1050, - "timeString": "17 min 30 sec", + "time": 375, + "timeString": "6 min 15 sec", "fuel": null, "sulfur": null }, @@ -745454,10 +759198,10 @@ "which": null, "toolId": "-1780802565", "caption": null, - "quantity": 8, + "quantity": 3, "quantityTypeId": null, - "time": 554.5, - "timeString": "9 min 14 sec", + "time": 198.25, + "timeString": "3 min 18 sec", "fuel": null, "sulfur": null }, @@ -745466,10 +759210,10 @@ "which": null, "toolId": "-1780802565", "caption": "Throw", - "quantity": 10, + "quantity": 4, "quantityTypeId": null, - "time": 1750.5, - "timeString": "29 min 10 sec", + "time": 625.5, + "timeString": "10 min 25 sec", "fuel": null, "sulfur": null }, @@ -745478,24 +759222,24 @@ "which": null, "toolId": "-1878475007", "caption": null, - "quantity": 3, + "quantity": 2, "quantityTypeId": null, - "time": 12, - "timeString": "12 sec", + "time": 10.5, + "timeString": "10 sec", "fuel": null, - "sulfur": 1440 + "sulfur": 960 }, { "group": "guns", "which": null, "toolId": "795371088", "caption": "Handmade Shell", - "quantity": 13, + "quantity": 14, "quantityTypeId": "588596902", - "time": 22, - "timeString": "22 sec", + "time": 23.1, + "timeString": "23 sec", "fuel": null, - "sulfur": 65 + "sulfur": 70 }, { "group": "guns", @@ -745514,72 +759258,2212 @@ "which": null, "toolId": "795371088", "caption": "12 Gauge Incendiary Shell", - "quantity": 22, + "quantity": 20, "quantityTypeId": "-1036635990", - "time": 36.3, - "timeString": "36 sec", + "time": 34.1, + "timeString": "34 sec", "fuel": null, - "sulfur": 440 + "sulfur": 400 }, { "group": "guns", "which": null, "toolId": "795371088", "caption": "12 Gauge Slug", - "quantity": 30, + "quantity": 32, "quantityTypeId": "-727717969", - "time": 49.5, - "timeString": "49 sec", + "time": 56.1, + "timeString": "56 sec", "fuel": null, - "sulfur": 300 + "sulfur": 320 }, { "group": "guns", "which": null, "toolId": "818877484", "caption": "Pistol Bullet", - "quantity": 59, + "quantity": 63, "quantityTypeId": "785728077", - "time": 22.45, - "timeString": "22 sec", + "time": 25.8, + "timeString": "25 sec", "fuel": null, - "sulfur": 148 + "sulfur": 158 }, { "group": "guns", "which": null, "toolId": "818877484", "caption": "Incendiary Pistol Bullet", - "quantity": 58, + "quantity": 59, "quantityTypeId": "51984655", - "time": 22.3, + "time": 22.45, "timeString": "22 sec", "fuel": null, - "sulfur": 483 + "sulfur": 491 }, { "group": "guns", "which": null, "toolId": "818877484", "caption": "HV Pistol Ammo", - "quantity": 59, + "quantity": 63, "quantityTypeId": "-1691396643", - "time": 22.45, - "timeString": "22 sec", + "time": 25.8, + "timeString": "25 sec", "fuel": null, - "sulfur": 786 + "sulfur": 315 }, { "group": "guns", "which": null, "toolId": "-904863145", "caption": "5.56 Rifle Ammo", - "quantity": 59, + "quantity": 63, "quantityTypeId": "-1211166256", - "time": 22.825, - "timeString": "22 sec", + "time": 23.525, + "timeString": "23 sec", "fuel": null, - "sulfur": 196 + "sulfur": 210 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1321651331", + "caption": "Semi-Automatic Rifle", + "quantity": 36, + "quantityTypeId": null, + "time": 14.575, + "timeString": "14 sec", + "fuel": null, + "sulfur": 900 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 36, + "quantityTypeId": "-1321651331", + "time": 14.575, + "timeString": "14 sec", + "fuel": null, + "sulfur": 900 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 59, + "quantityTypeId": "605467368", + "time": 22.825, + "timeString": "22 sec", + "fuel": null, + "sulfur": 738 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 63, + "quantityTypeId": "1712070256", + "time": 23.525, + "timeString": "23 sec", + "fuel": null, + "sulfur": 420 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "Pistol Bullet", + "quantity": 84, + "quantityTypeId": "785728077", + "time": 16.1, + "timeString": "16 sec", + "fuel": null, + "sulfur": 210 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "Incendiary Pistol Bullet", + "quantity": 79, + "quantityTypeId": "51984655", + "time": 15.6, + "timeString": "15 sec", + "fuel": null, + "sulfur": 658 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "HV Pistol Ammo", + "quantity": 84, + "quantityTypeId": "-1691396643", + "time": 16.1, + "timeString": "16 sec", + "fuel": null, + "sulfur": 420 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "Handmade Shell", + "quantity": 19, + "quantityTypeId": "588596902", + "time": 21.15, + "timeString": "21 sec", + "fuel": null, + "sulfur": 95 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Buckshot", + "quantity": 16, + "quantityTypeId": "-1685290200", + "time": 14.85, + "timeString": "14 sec", + "fuel": null, + "sulfur": 160 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Incendiary Shell", + "quantity": 27, + "quantityTypeId": "-1036635990", + "time": 28.7, + "timeString": "28 sec", + "fuel": null, + "sulfur": 540 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Slug", + "quantity": 42, + "quantityTypeId": "-727717969", + "time": 43.55, + "timeString": "43 sec", + "fuel": null, + "sulfur": 420 + }, + { + "group": "guns", + "which": null, + "toolId": "-1517740219", + "caption": "Speargun Spear", + "quantity": 100, + "quantityTypeId": "-1800345240", + "time": 356.4, + "timeString": "5 min 56 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1583967946", + "caption": null, + "quantity": 15, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1583967946", + "caption": "Throw", + "quantity": 25, + "quantityTypeId": null, + "time": 937.5, + "timeString": "15 min 37 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "171931394", + "caption": null, + "quantity": 14, + "quantityTypeId": null, + "time": 313.6, + "timeString": "5 min 13 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "171931394", + "caption": "Throw", + "quantity": 25, + "quantityTypeId": null, + "time": 937.5, + "timeString": "15 min 37 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1602646136", + "caption": null, + "quantity": 17, + "quantityTypeId": null, + "time": 284.5, + "timeString": "4 min 44 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1602646136", + "caption": "Throw", + "quantity": 5, + "quantityTypeId": null, + "time": 150, + "timeString": "2 min 30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1469578201", + "caption": null, + "quantity": 5, + "quantityTypeId": null, + "time": 172, + "timeString": "2 min 52 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1469578201", + "caption": "Throw", + "quantity": 4, + "quantityTypeId": null, + "time": 313.5, + "timeString": "5 min 13 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1326180354", + "caption": null, + "quantity": 4, + "quantityTypeId": null, + "time": 159.25, + "timeString": "2 min 39 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1326180354", + "caption": "Throw", + "quantity": 4, + "quantityTypeId": null, + "time": 469.5, + "timeString": "7 min 49 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "Pistol Bullet", + "quantity": 67, + "quantityTypeId": "785728077", + "time": 20.19, + "timeString": "20 sec", + "fuel": null, + "sulfur": 168 + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "Incendiary Pistol Bullet", + "quantity": 63, + "quantityTypeId": "51984655", + "time": 19.67, + "timeString": "19 sec", + "fuel": null, + "sulfur": 525 + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "HV Pistol Ammo", + "quantity": 67, + "quantityTypeId": "-1691396643", + "time": 20.19, + "timeString": "20 sec", + "fuel": null, + "sulfur": 335 + }, + { + "group": "melee", + "which": null, + "toolId": "795236088", + "caption": null, + "quantity": 39, + "quantityTypeId": null, + "time": 1338, + "timeString": "22 min 18 sec", + "fuel": 39, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "795236088", + "caption": "Lit", + "quantity": 120, + "quantityTypeId": null, + "time": 1203.2, + "timeString": "20 min 3 sec", + "fuel": 120, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1540934679", + "caption": null, + "quantity": 14, + "quantityTypeId": null, + "time": 388, + "timeString": "6 min 28 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1540934679", + "caption": "Throw", + "quantity": 5, + "quantityTypeId": null, + "time": 187.5, + "timeString": "3 min 7 sec", + "fuel": null, + "sulfur": null + } + ], + "Bradley APC": [ + { + "group": "explosive", + "which": null, + "toolId": "-1843426638", + "caption": null, + "quantity": 7, + "quantityTypeId": null, + "time": 0, + "timeString": "0 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "349762871", + "caption": null, + "quantity": 82, + "quantityTypeId": null, + "time": 105.2, + "timeString": "1 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "-742865266", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": 330, + "sulfur": 15400 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1841918730", + "caption": null, + "quantity": 7, + "quantityTypeId": null, + "time": 36, + "timeString": "36 sec", + "fuel": null, + "sulfur": 1400 + }, + { + "group": "torpedo", + "which": null, + "toolId": "-1671551935", + "caption": null, + "quantity": 7, + "quantityTypeId": null, + "time": 40, + "timeString": "40 sec", + "fuel": null, + "sulfur": 84 + }, + { + "group": "explosive", + "which": null, + "toolId": "1248356124", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 13, + "timeString": "13 sec", + "fuel": 180, + "sulfur": 6600 + }, + { + "group": "throw", + "which": null, + "toolId": "-1536855921", + "caption": "Throw", + "quantity": 20000, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 571, + "quantityTypeId": "-1321651331", + "time": 157.0483, + "timeString": "2 min 37 sec", + "fuel": null, + "sulfur": 14275 + }, + { + "group": "explosive", + "which": null, + "toolId": "1840822026", + "caption": null, + "quantity": 191, + "quantityTypeId": null, + "time": 232.95, + "timeString": "3 min 52 sec", + "fuel": null, + "sulfur": 22920 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 570, + "quantityTypeId": "-1321651331", + "time": 1435.9, + "timeString": "23 min 55 sec", + "fuel": null, + "sulfur": 14250 + }, + { + "group": "explosive", + "which": null, + "toolId": "143803535", + "caption": null, + "quantity": 40, + "quantityTypeId": null, + "time": 50.5, + "timeString": "50 sec", + "fuel": null, + "sulfur": 2400 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 571, + "quantityTypeId": "-1321651331", + "time": 128.625, + "timeString": "2 min 8 sec", + "fuel": null, + "sulfur": 14275 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 570, + "quantityTypeId": "-1321651331", + "time": 1524.6, + "timeString": "25 min 24 sec", + "fuel": null, + "sulfur": 14250 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 571, + "quantityTypeId": "-1321651331", + "time": 142.12, + "timeString": "2 min 22 sec", + "fuel": null, + "sulfur": 14275 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 570, + "quantityTypeId": "-1321651331", + "time": 105.18, + "timeString": "1 min 45 sec", + "fuel": null, + "sulfur": 14250 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 571, + "quantityTypeId": "-1321651331", + "time": 185.85, + "timeString": "3 min 5 sec", + "fuel": null, + "sulfur": 14275 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1878475007", + "caption": null, + "quantity": 20, + "quantityTypeId": null, + "time": 37.5, + "timeString": "37 sec", + "fuel": null, + "sulfur": 9600 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1321651331", + "caption": "Semi-Automatic Rifle", + "quantity": 571, + "quantityTypeId": null, + "time": 247.625, + "timeString": "4 min 7 sec", + "fuel": null, + "sulfur": 14275 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 571, + "quantityTypeId": "-1321651331", + "time": 247.625, + "timeString": "4 min 7 sec", + "fuel": null, + "sulfur": 14275 + } + ], + "Duo Submarine": [ + { + "group": "explosive", + "which": null, + "toolId": "-1843426638", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 0, + "timeString": "0 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "349762871", + "caption": null, + "quantity": 13, + "quantityTypeId": null, + "time": 16, + "timeString": "16 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "-742865266", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 6, + "timeString": "6 sec", + "fuel": 60, + "sulfur": 2800 + }, + { + "group": "explosive", + "which": null, + "toolId": "1638322904", + "caption": null, + "quantity": 280, + "quantityTypeId": null, + "time": 1674, + "timeString": "27 min 54 sec", + "fuel": 21000, + "sulfur": 84000 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1841918730", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 400 + }, + { + "group": "torpedo", + "which": null, + "toolId": "-1671551935", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 10, + "timeString": "10 sec", + "fuel": null, + "sulfur": 24 + }, + { + "group": "melee", + "which": null, + "toolId": "-2073432256", + "caption": null, + "quantity": 42, + "quantityTypeId": null, + "time": 653.5, + "timeString": "10 min 53 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-2073432256", + "caption": "Throw", + "quantity": 70, + "quantityTypeId": null, + "time": 2625, + "timeString": "43 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "1248356124", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 10, + "timeString": "10 sec", + "fuel": 60, + "sulfur": 2200 + }, + { + "group": "melee", + "which": null, + "toolId": "-196667575", + "caption": null, + "quantity": 72, + "quantityTypeId": null, + "time": 1005, + "timeString": "16 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1488979457", + "caption": null, + "quantity": 15, + "quantityTypeId": null, + "time": 189.05, + "timeString": "3 min 9 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1488979457", + "caption": "Workbench Refill", + "quantity": 1, + "quantityTypeId": null, + "time": 253.05, + "timeString": "4 min 13 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1536855921", + "caption": null, + "quantity": 54, + "quantityTypeId": null, + "time": 1453, + "timeString": "24 min 13 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1536855921", + "caption": "Throw", + "quantity": 35, + "quantityTypeId": null, + "time": 1297.5, + "timeString": "21 min 37 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "5.56 Rifle Ammo", + "quantity": 47, + "quantityTypeId": "-1211166256", + "time": 10.3985, + "timeString": "10 sec", + "fuel": null, + "sulfur": 157 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 32, + "quantityTypeId": "-1321651331", + "time": 8.399, + "timeString": "8 sec", + "fuel": null, + "sulfur": 800 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 46, + "quantityTypeId": "605467368", + "time": 10.2652, + "timeString": "10 sec", + "fuel": null, + "sulfur": 575 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 47, + "quantityTypeId": "1712070256", + "time": 10.3985, + "timeString": "10 sec", + "fuel": null, + "sulfur": 313 + }, + { + "group": "explosive", + "which": null, + "toolId": "1840822026", + "caption": null, + "quantity": 26, + "quantityTypeId": null, + "time": 34.95, + "timeString": "34 sec", + "fuel": null, + "sulfur": 3120 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "5.56 Rifle Ammo", + "quantity": 30, + "quantityTypeId": "-1211166256", + "time": 72.4, + "timeString": "1 min 12 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 23, + "quantityTypeId": "-1321651331", + "time": 53.9, + "timeString": "53 sec", + "fuel": null, + "sulfur": 575 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 29, + "quantityTypeId": "605467368", + "time": 70.7, + "timeString": "1 min 10 sec", + "fuel": null, + "sulfur": 363 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 30, + "quantityTypeId": "1712070256", + "time": 72.4, + "timeString": "1 min 12 sec", + "fuel": null, + "sulfur": 200 + }, + { + "group": "melee", + "which": null, + "toolId": "1711033574", + "caption": null, + "quantity": 47, + "quantityTypeId": null, + "time": 862.9, + "timeString": "14 min 22 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1711033574", + "caption": "Throw", + "quantity": 59, + "quantityTypeId": null, + "time": 1750.5, + "timeString": "29 min 10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1814288539", + "caption": null, + "quantity": 44, + "quantityTypeId": null, + "time": 808.8, + "timeString": "13 min 28 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1814288539", + "caption": "Throw", + "quantity": 70, + "quantityTypeId": null, + "time": 2625, + "timeString": "43 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "High Velocity Arrow", + "quantity": 350, + "quantityTypeId": "-1023065463", + "time": 349, + "timeString": "5 min 49 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Wooden Arrow", + "quantity": 280, + "quantityTypeId": "-1234735557", + "time": 279, + "timeString": "4 min 39 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Bone Arrow", + "quantity": 350, + "quantityTypeId": "215754713", + "time": 349, + "timeString": "5 min 49 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "14241751", + "caption": "Hunting Bow", + "quantity": 234, + "quantityTypeId": null, + "time": 233, + "timeString": "3 min 53 sec", + "fuel": 1170, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Fire Arrow", + "quantity": 234, + "quantityTypeId": "14241751", + "time": 233, + "timeString": "3 min 53 sec", + "fuel": 1170, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1104520648", + "caption": null, + "quantity": 48, + "quantityTypeId": null, + "time": 338.8, + "timeString": "5 min 38 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1978999529", + "caption": null, + "quantity": 15, + "quantityTypeId": null, + "time": 598, + "timeString": "9 min 58 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1978999529", + "caption": "Throw", + "quantity": 10, + "quantityTypeId": null, + "time": 876, + "timeString": "14 min 36 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "High Velocity Arrow", + "quantity": 175, + "quantityTypeId": "-1023065463", + "time": 699, + "timeString": "11 min 39 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Wooden Arrow", + "quantity": 140, + "quantityTypeId": "-1234735557", + "time": 559, + "timeString": "9 min 19 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Bone Arrow", + "quantity": 175, + "quantityTypeId": "215754713", + "time": 699, + "timeString": "11 min 39 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Fire Arrow", + "quantity": 140, + "quantityTypeId": "14241751", + "time": 559, + "timeString": "9 min 19 sec", + "fuel": 700, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "High Velocity Arrow", + "quantity": 292, + "quantityTypeId": "-1023065463", + "time": 1047.6, + "timeString": "17 min 27 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Wooden Arrow", + "quantity": 234, + "quantityTypeId": "-1234735557", + "time": 838.8, + "timeString": "13 min 58 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Bone Arrow", + "quantity": 292, + "quantityTypeId": "215754713", + "time": 1047.6, + "timeString": "17 min 27 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Fire Arrow", + "quantity": 206, + "quantityTypeId": "14241751", + "time": 738, + "timeString": "12 min 18 sec", + "fuel": 1030, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "Handmade Shell", + "quantity": 13, + "quantityTypeId": "588596902", + "time": 36, + "timeString": "36 sec", + "fuel": null, + "sulfur": 65 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Buckshot", + "quantity": 12, + "quantityTypeId": "-1685290200", + "time": 30.5, + "timeString": "30 sec", + "fuel": null, + "sulfur": 120 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Incendiary Shell", + "quantity": 22, + "quantityTypeId": "-1036635990", + "time": null, + "timeString": null, + "fuel": null, + "sulfur": 440 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Slug", + "quantity": 30, + "quantityTypeId": "-727717969", + "time": 84.5, + "timeString": "1 min 24 sec", + "fuel": null, + "sulfur": 300 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "Handmade Shell", + "quantity": 13, + "quantityTypeId": "588596902", + "time": 32.84, + "timeString": "32 sec", + "fuel": null, + "sulfur": 65 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Buckshot", + "quantity": 12, + "quantityTypeId": "-1685290200", + "time": 30.16, + "timeString": "30 sec", + "fuel": null, + "sulfur": 120 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Incendiary Shell", + "quantity": 22, + "quantityTypeId": "-1036635990", + "time": 56.96, + "timeString": "56 sec", + "fuel": null, + "sulfur": 440 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Slug", + "quantity": 30, + "quantityTypeId": "-727717969", + "time": 78.4, + "timeString": "1 min 18 sec", + "fuel": null, + "sulfur": 300 + }, + { + "group": "explosive", + "which": null, + "toolId": "143803535", + "caption": null, + "quantity": 7, + "quantityTypeId": null, + "time": 10.9, + "timeString": "10 sec", + "fuel": null, + "sulfur": 420 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1215753368", + "caption": null, + "quantity": 4118, + "quantityTypeId": null, + "time": 551.1, + "timeString": "9 min 11 sec", + "fuel": 4118, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "Pistol Bullet", + "quantity": 59, + "quantityTypeId": "785728077", + "time": 14.8875, + "timeString": "14 sec", + "fuel": null, + "sulfur": 148 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "Incendiary Pistol Bullet", + "quantity": 58, + "quantityTypeId": "51984655", + "time": 14.775, + "timeString": "14 sec", + "fuel": null, + "sulfur": 483 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "HV Pistol Ammo", + "quantity": 59, + "quantityTypeId": "-1691396643", + "time": 14.8875, + "timeString": "14 sec", + "fuel": null, + "sulfur": 295 + }, + { + "group": "guns", + "which": null, + "toolId": "-1123473824", + "caption": "40mm Shotgun Round", + "quantity": 9, + "quantityTypeId": "1055319033", + "time": 8.8, + "timeString": "8 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1252059217", + "caption": null, + "quantity": 10, + "quantityTypeId": null, + "time": 582.3, + "timeString": "9 min 42 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1252059217", + "caption": "Throw", + "quantity": 12, + "quantityTypeId": null, + "time": 1750.5, + "timeString": "29 min 10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "5.56 Rifle Ammo", + "quantity": 41, + "quantityTypeId": "-1211166256", + "time": 5, + "timeString": "5 sec", + "fuel": null, + "sulfur": 137 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 29, + "quantityTypeId": "-1321651331", + "time": 3.5, + "timeString": "3 sec", + "fuel": null, + "sulfur": 725 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "605467368", + "time": 4.875, + "timeString": "4 sec", + "fuel": null, + "sulfur": 500 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 41, + "quantityTypeId": "1712070256", + "time": 5, + "timeString": "5 sec", + "fuel": null, + "sulfur": 273 + }, + { + "group": "melee", + "which": null, + "toolId": "2040726127", + "caption": null, + "quantity": 39, + "quantityTypeId": null, + "time": 388, + "timeString": "6 min 28 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "2040726127", + "caption": "Throw", + "quantity": 14, + "quantityTypeId": null, + "time": 525, + "timeString": "8 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "5.56 Rifle Ammo", + "quantity": 30, + "quantityTypeId": "-1211166256", + "time": 77.4, + "timeString": "1 min 17 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 23, + "quantityTypeId": "-1321651331", + "time": 58.8, + "timeString": "58 sec", + "fuel": null, + "sulfur": 575 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 29, + "quantityTypeId": "605467368", + "time": 74.8, + "timeString": "1 min 14 sec", + "fuel": null, + "sulfur": 363 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 30, + "quantityTypeId": "1712070256", + "time": 77.4, + "timeString": "1 min 17 sec", + "fuel": null, + "sulfur": 200 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "5.56 Rifle Ammo", + "quantity": 59, + "quantityTypeId": "-1211166256", + "time": 10.84, + "timeString": "10 sec", + "fuel": null, + "sulfur": 196 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 36, + "quantityTypeId": "-1321651331", + "time": 8.08, + "timeString": "8 sec", + "fuel": null, + "sulfur": 900 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 58, + "quantityTypeId": "605467368", + "time": 10.72, + "timeString": "10 sec", + "fuel": null, + "sulfur": 725 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 59, + "quantityTypeId": "1712070256", + "time": 10.84, + "timeString": "10 sec", + "fuel": null, + "sulfur": 394 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "5.56 Rifle Ammo", + "quantity": 36, + "quantityTypeId": "-1211166256", + "time": 4.2, + "timeString": "4 sec", + "fuel": null, + "sulfur": 120 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 26, + "quantityTypeId": "-1321651331", + "time": 3, + "timeString": "3 sec", + "fuel": null, + "sulfur": 650 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 36, + "quantityTypeId": "605467368", + "time": 4.2, + "timeString": "4 sec", + "fuel": null, + "sulfur": 450 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 36, + "quantityTypeId": "1712070256", + "time": 4.2, + "timeString": "4 sec", + "fuel": null, + "sulfur": 240 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "5.56 Rifle Ammo", + "quantity": 47, + "quantityTypeId": "-1211166256", + "time": 14.2, + "timeString": "14 sec", + "fuel": null, + "sulfur": 157 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 32, + "quantityTypeId": "-1321651331", + "time": 8.5, + "timeString": "8 sec", + "fuel": null, + "sulfur": 800 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 46, + "quantityTypeId": "605467368", + "time": 14.025, + "timeString": "14 sec", + "fuel": null, + "sulfur": 575 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 47, + "quantityTypeId": "1712070256", + "time": 14.2, + "timeString": "14 sec", + "fuel": null, + "sulfur": 313 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "Handmade Shell", + "quantity": 17, + "quantityTypeId": "588596902", + "time": 15.8, + "timeString": "15 sec", + "fuel": null, + "sulfur": 85 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Buckshot", + "quantity": 14, + "quantityTypeId": "-1685290200", + "time": 14.9, + "timeString": "14 sec", + "fuel": null, + "sulfur": 140 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Incendiary Shell", + "quantity": 27, + "quantityTypeId": "-1036635990", + "time": 29.8, + "timeString": "29 sec", + "fuel": null, + "sulfur": 540 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Slug", + "quantity": 37, + "quantityTypeId": "-727717969", + "time": 43.8, + "timeString": "43 sec", + "fuel": null, + "sulfur": 370 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "Pistol Bullet", + "quantity": 52, + "quantityTypeId": "785728077", + "time": 14.37, + "timeString": "14 sec", + "fuel": null, + "sulfur": 130 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "Incendiary Pistol Bullet", + "quantity": 51, + "quantityTypeId": "51984655", + "time": 14.22, + "timeString": "14 sec", + "fuel": null, + "sulfur": 425 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "HV Pistol Ammo", + "quantity": 52, + "quantityTypeId": "-1691396643", + "time": 14.37, + "timeString": "14 sec", + "fuel": null, + "sulfur": 260 + }, + { + "group": "melee", + "which": null, + "toolId": "-1966748496", + "caption": null, + "quantity": 14, + "quantityTypeId": null, + "time": 481, + "timeString": "8 min 1 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1966748496", + "caption": "Throw", + "quantity": 10, + "quantityTypeId": null, + "time": 700.5, + "timeString": "11 min 40 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1137865085", + "caption": null, + "quantity": 20, + "quantityTypeId": null, + "time": 519, + "timeString": "8 min 39 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1137865085", + "caption": "Throw", + "quantity": 18, + "quantityTypeId": null, + "time": 1312.5, + "timeString": "21 min 52 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 3500, + "quantityTypeId": null, + "time": 428.1, + "timeString": "7 min 8 sec", + "fuel": 3500, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 63, + "quantityTypeId": "-1211166256", + "time": 6.2, + "timeString": "6 sec", + "fuel": null, + "sulfur": 210 + }, + { + "group": "explosive", + "which": null, + "toolId": "1556365900", + "caption": null, + "quantity": 400, + "quantityTypeId": null, + "time": 417.5, + "timeString": "6 min 57 sec", + "fuel": 20000, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "Pistol Bullet", + "quantity": 63, + "quantityTypeId": "785728077", + "time": 14, + "timeString": "14 sec", + "fuel": null, + "sulfur": 158 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "Incendiary Pistol Bullet", + "quantity": 62, + "quantityTypeId": "51984655", + "time": 13.9, + "timeString": "13 sec", + "fuel": null, + "sulfur": 516 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "HV Pistol Ammo", + "quantity": 63, + "quantityTypeId": "-1691396643", + "time": 14, + "timeString": "14 sec", + "fuel": null, + "sulfur": 315 + }, + { + "group": "guns", + "which": null, + "toolId": "1953903201", + "caption": "Nailgun Nails", + "quantity": 778, + "quantityTypeId": "-2097376851", + "time": 258.15, + "timeString": "4 min 18 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1491189398", + "caption": null, + "quantity": 11, + "quantityTypeId": null, + "time": 593.75, + "timeString": "9 min 53 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1491189398", + "caption": "Throw", + "quantity": 5, + "quantityTypeId": null, + "time": 525, + "timeString": "8 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1302129395", + "caption": null, + "quantity": 10, + "quantityTypeId": null, + "time": 885, + "timeString": "14 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1302129395", + "caption": "Throw", + "quantity": 9, + "quantityTypeId": null, + "time": 1312.5, + "timeString": "21 min 52 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "Handmade Shell", + "quantity": 13, + "quantityTypeId": "588596902", + "time": 54, + "timeString": "54 sec", + "fuel": null, + "sulfur": 65 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Buckshot", + "quantity": 12, + "quantityTypeId": "-1685290200", + "time": 49.5, + "timeString": "49 sec", + "fuel": null, + "sulfur": 120 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Incendiary Shell", + "quantity": 22, + "quantityTypeId": "-1036635990", + "time": 94.5, + "timeString": "1 min 34 sec", + "fuel": null, + "sulfur": 440 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Slug", + "quantity": 30, + "quantityTypeId": "-727717969", + "time": 130.5, + "timeString": "2 min 10 sec", + "fuel": null, + "sulfur": 300 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "Pistol Bullet", + "quantity": 43, + "quantityTypeId": "785728077", + "time": 31.5, + "timeString": "31 sec", + "fuel": null, + "sulfur": 108 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "Incendiary Pistol Bullet", + "quantity": 42, + "quantityTypeId": "51984655", + "time": 27.75, + "timeString": "27 sec", + "fuel": null, + "sulfur": 350 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "HV Pistol Ammo", + "quantity": 43, + "quantityTypeId": "-1691396643", + "time": 31.5, + "timeString": "31 sec", + "fuel": null, + "sulfur": 215 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "Pistol Bullet", + "quantity": 67, + "quantityTypeId": "785728077", + "time": 37.35, + "timeString": "37 sec", + "fuel": null, + "sulfur": 168 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "Incendiary Pistol Bullet", + "quantity": 66, + "quantityTypeId": "51984655", + "time": 37.175, + "timeString": "37 sec", + "fuel": null, + "sulfur": 550 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "HV Pistol Ammo", + "quantity": 67, + "quantityTypeId": "-1691396643", + "time": 37.35, + "timeString": "37 sec", + "fuel": null, + "sulfur": 335 + }, + { + "group": "melee", + "which": null, + "toolId": "963906841", + "caption": null, + "quantity": 40, + "quantityTypeId": null, + "time": 1859, + "timeString": "30 min 59 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "963906841", + "caption": "Throw", + "quantity": 56, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-262590403", + "caption": null, + "quantity": 8, + "quantityTypeId": null, + "time": 554.5, + "timeString": "9 min 14 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-262590403", + "caption": "Throw", + "quantity": 6, + "quantityTypeId": null, + "time": 1050, + "timeString": "17 min 30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1506397857", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 355, + "timeString": "5 min 55 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1506397857", + "caption": "Throw", + "quantity": 6, + "quantityTypeId": null, + "time": 1050, + "timeString": "17 min 30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1780802565", + "caption": null, + "quantity": 8, + "quantityTypeId": null, + "time": 554.5, + "timeString": "9 min 14 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1780802565", + "caption": "Throw", + "quantity": 10, + "quantityTypeId": null, + "time": 1750.5, + "timeString": "29 min 10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "-1878475007", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 12, + "timeString": "12 sec", + "fuel": null, + "sulfur": 1440 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "Handmade Shell", + "quantity": 13, + "quantityTypeId": "588596902", + "time": 22, + "timeString": "22 sec", + "fuel": null, + "sulfur": 65 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Buckshot", + "quantity": 12, + "quantityTypeId": "-1685290200", + "time": 16.5, + "timeString": "16 sec", + "fuel": null, + "sulfur": 120 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Incendiary Shell", + "quantity": 22, + "quantityTypeId": "-1036635990", + "time": 36.3, + "timeString": "36 sec", + "fuel": null, + "sulfur": 440 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Slug", + "quantity": 30, + "quantityTypeId": "-727717969", + "time": 49.5, + "timeString": "49 sec", + "fuel": null, + "sulfur": 300 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "Pistol Bullet", + "quantity": 59, + "quantityTypeId": "785728077", + "time": 22.45, + "timeString": "22 sec", + "fuel": null, + "sulfur": 148 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "Incendiary Pistol Bullet", + "quantity": 58, + "quantityTypeId": "51984655", + "time": 22.3, + "timeString": "22 sec", + "fuel": null, + "sulfur": 483 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "HV Pistol Ammo", + "quantity": 59, + "quantityTypeId": "-1691396643", + "time": 22.45, + "timeString": "22 sec", + "fuel": null, + "sulfur": 295 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "5.56 Rifle Ammo", + "quantity": 59, + "quantityTypeId": "-1211166256", + "time": 22.825, + "timeString": "22 sec", + "fuel": null, + "sulfur": 196 }, { "group": "explosive", @@ -745627,7 +761511,7 @@ "time": 22.825, "timeString": "22 sec", "fuel": null, - "sulfur": 1180 + "sulfur": 394 }, { "group": "guns", @@ -745636,8 +761520,8 @@ "caption": "Pistol Bullet", "quantity": 78, "quantityTypeId": "785728077", - "time": 19.4, - "timeString": "19 sec", + "time": 15.5, + "timeString": "15 sec", "fuel": null, "sulfur": 195 }, @@ -745648,8 +761532,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 77, "quantityTypeId": "51984655", - "time": 19.3, - "timeString": "19 sec", + "time": 15.4, + "timeString": "15 sec", "fuel": null, "sulfur": 641 }, @@ -745660,10 +761544,10 @@ "caption": "HV Pistol Ammo", "quantity": 78, "quantityTypeId": "-1691396643", - "time": 19.4, - "timeString": "19 sec", + "time": 15.5, + "timeString": "15 sec", "fuel": null, - "sulfur": 1040 + "sulfur": 390 }, { "group": "guns", @@ -745879,7 +761763,7 @@ "time": 19.67, "timeString": "19 sec", "fuel": null, - "sulfur": 840 + "sulfur": 315 }, { "group": "melee", @@ -745972,12 +761856,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 120, + "quantity": 60, "quantityTypeId": null, - "time": 714, - "timeString": "11 min 54 sec", - "fuel": 30360, - "sulfur": 73200 + "time": 354, + "timeString": "5 min 54 sec", + "fuel": 4500, + "sulfur": 18000 }, { "group": "explosive", @@ -746001,7 +761885,7 @@ "time": 52, "timeString": "52 sec", "fuel": null, - "sulfur": 180 + "sulfur": 108 }, { "group": "melee", @@ -746157,7 +762041,7 @@ "time": 78.257, "timeString": "1 min 18 sec", "fuel": null, - "sulfur": 6000 + "sulfur": 2001 }, { "group": "explosive", @@ -746217,7 +762101,7 @@ "time": 469.7, "timeString": "7 min 49 sec", "fuel": null, - "sulfur": 3760 + "sulfur": 1254 }, { "group": "melee", @@ -746505,7 +762389,7 @@ "time": 97.825, "timeString": "1 min 37 sec", "fuel": null, - "sulfur": 4999 + "sulfur": 1875 }, { "group": "guns", @@ -746589,7 +762473,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 5220 + "sulfur": 1741 }, { "group": "melee", @@ -746661,7 +762545,7 @@ "time": 501, "timeString": "8 min 21 sec", "fuel": null, - "sulfur": 3760 + "sulfur": 1254 }, { "group": "guns", @@ -746709,7 +762593,7 @@ "time": 91.44, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 7500 + "sulfur": 2501 }, { "group": "guns", @@ -746757,7 +762641,7 @@ "time": 42.36, "timeString": "42 sec", "fuel": null, - "sulfur": 4620 + "sulfur": 1541 }, { "group": "guns", @@ -746805,7 +762689,7 @@ "time": 95.375, "timeString": "1 min 35 sec", "fuel": null, - "sulfur": 6000 + "sulfur": 2001 }, { "group": "guns", @@ -746889,7 +762773,7 @@ "time": 99.23, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "melee", @@ -746939,6 +762823,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 750, + "quantityTypeId": null, + "time": 88.5, + "timeString": "1 min 28 sec", + "fuel": 750, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 400, + "quantityTypeId": "-1211166256", + "time": 43.3, + "timeString": "43 sec", + "fuel": null, + "sulfur": 1332 + }, { "group": "explosive", "which": null, @@ -746985,7 +762893,7 @@ "time": 90.6, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 5332 + "sulfur": 2000 }, { "group": "melee", @@ -747105,7 +763013,7 @@ "time": 202.8, "timeString": "3 min 22 sec", "fuel": null, - "sulfur": 3639 + "sulfur": 1365 }, { "group": "guns", @@ -747141,7 +763049,7 @@ "time": 245.825, "timeString": "4 min 5 sec", "fuel": null, - "sulfur": 5719 + "sulfur": 2145 }, { "group": "melee", @@ -747198,8 +763106,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 100, - "timeString": "1 min 40 sec", + "time": 75, + "timeString": "1 min 15 sec", "fuel": null, "sulfur": null }, @@ -747333,7 +763241,7 @@ "time": 157.85, "timeString": "2 min 37 sec", "fuel": null, - "sulfur": 4999 + "sulfur": 1875 }, { "group": "guns", @@ -747393,7 +763301,7 @@ "time": 162.625, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 7500 + "sulfur": 2501 }, { "group": "guns", @@ -747402,8 +763310,8 @@ "caption": "Pistol Bullet", "quantity": 500, "quantityTypeId": "785728077", - "time": 127.9, - "timeString": "2 min 7 sec", + "time": 112.3, + "timeString": "1 min 52 sec", "fuel": null, "sulfur": 1250 }, @@ -747414,8 +763322,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 313, "quantityTypeId": "51984655", - "time": 81.9, - "timeString": "1 min 21 sec", + "time": 70.2, + "timeString": "1 min 10 sec", "fuel": null, "sulfur": 2607 }, @@ -747426,10 +763334,10 @@ "caption": "HV Pistol Ammo", "quantity": 500, "quantityTypeId": "-1691396643", - "time": 127.9, - "timeString": "2 min 7 sec", + "time": 112.3, + "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -747621,7 +763529,7 @@ "time": 125.4, "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 5332 + "sulfur": 2000 }, { "group": "melee", @@ -747702,12 +763610,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 400, + "quantity": 200, "quantityTypeId": null, - "time": 2394, - "timeString": "39 min 54 sec", - "fuel": 101200, - "sulfur": 244000 + "time": 1194, + "timeString": "19 min 54 sec", + "fuel": 15000, + "sulfur": 60000 }, { "group": "explosive", @@ -747731,7 +763639,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "melee", @@ -747875,7 +763783,7 @@ "time": 25.9968, "timeString": "25 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "explosive", @@ -747935,7 +763843,7 @@ "time": 154.9, "timeString": "2 min 34 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "melee", @@ -748331,7 +764239,7 @@ "time": 30.675, "timeString": "30 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -748415,7 +764323,7 @@ "time": 17.125, "timeString": "17 sec", "fuel": null, - "sulfur": 1740 + "sulfur": 580 }, { "group": "melee", @@ -748487,7 +764395,7 @@ "time": 166, "timeString": "2 min 46 sec", "fuel": null, - "sulfur": 1260 + "sulfur": 420 }, { "group": "guns", @@ -748535,7 +764443,7 @@ "time": 30.4, "timeString": "30 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -748583,7 +764491,7 @@ "time": 9.12, "timeString": "9 sec", "fuel": null, - "sulfur": 1540 + "sulfur": 514 }, { "group": "guns", @@ -748631,7 +764539,7 @@ "time": 29.625, "timeString": "29 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -748715,7 +764623,7 @@ "time": 32.33, "timeString": "32 sec", "fuel": null, - "sulfur": 1493 + "sulfur": 560 }, { "group": "melee", @@ -748765,6 +764673,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 2500, + "quantityTypeId": null, + "time": 304.3, + "timeString": "5 min 4 sec", + "fuel": 2500, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 134, + "quantityTypeId": "-1211166256", + "time": 13.3, + "timeString": "13 sec", + "fuel": null, + "sulfur": 446 + }, { "group": "explosive", "which": null, @@ -748811,7 +764743,7 @@ "time": 28.9, "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "guns", @@ -748955,7 +764887,7 @@ "time": 67.5, "timeString": "1 min 7 sec", "fuel": null, - "sulfur": 1213 + "sulfur": 455 }, { "group": "guns", @@ -748991,7 +764923,7 @@ "time": 79.675, "timeString": "1 min 19 sec", "fuel": null, - "sulfur": 1906 + "sulfur": 715 }, { "group": "melee", @@ -749048,8 +764980,8 @@ "caption": null, "quantity": 5, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -749183,7 +765115,7 @@ "time": 51.6, "timeString": "51 sec", "fuel": null, - "sulfur": 1666 + "sulfur": 625 }, { "group": "guns", @@ -749243,7 +765175,7 @@ "time": 51.275, "timeString": "51 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -749252,8 +765184,8 @@ "caption": "Pistol Bullet", "quantity": 167, "quantityTypeId": "785728077", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, "sulfur": 418 }, @@ -749264,8 +765196,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 158, "quantityTypeId": "51984655", - "time": 39.1, - "timeString": "39 sec", + "time": 35.2, + "timeString": "35 sec", "fuel": null, "sulfur": 1316 }, @@ -749276,10 +765208,10 @@ "caption": "HV Pistol Ammo", "quantity": 167, "quantityTypeId": "-1691396643", - "time": 40, - "timeString": "40 sec", + "time": 36.1, + "timeString": "36 sec", "fuel": null, - "sulfur": 2226 + "sulfur": 835 }, { "group": "guns", @@ -749495,7 +765427,7 @@ "time": 40.51, "timeString": "40 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "melee", @@ -749588,12 +765520,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 15, + "quantity": 8, "quantityTypeId": null, - "time": 84, - "timeString": "1 min 24 sec", - "fuel": 3795, - "sulfur": 9150 + "time": 42, + "timeString": "42 sec", + "fuel": 600, + "sulfur": 2400 }, { "group": "explosive", @@ -749629,7 +765561,7 @@ "time": 16, "timeString": "16 sec", "fuel": null, - "sulfur": 60 + "sulfur": 36 }, { "group": "turret", @@ -749713,7 +765645,7 @@ "time": 78.257, "timeString": "1 min 18 sec", "fuel": null, - "sulfur": 6000 + "sulfur": 2001 }, { "group": "explosive", @@ -749773,7 +765705,7 @@ "time": 469.7, "timeString": "7 min 49 sec", "fuel": null, - "sulfur": 3760 + "sulfur": 1254 }, { "group": "explosive", @@ -749977,7 +765909,7 @@ "time": 97.825, "timeString": "1 min 37 sec", "fuel": null, - "sulfur": 4999 + "sulfur": 1875 }, { "group": "guns", @@ -750037,7 +765969,7 @@ "time": 58, "timeString": "58 sec", "fuel": null, - "sulfur": 5220 + "sulfur": 1741 }, { "group": "guns", @@ -750085,7 +766017,7 @@ "time": 501, "timeString": "8 min 21 sec", "fuel": null, - "sulfur": 3760 + "sulfur": 1254 }, { "group": "guns", @@ -750133,7 +766065,7 @@ "time": 91.44, "timeString": "1 min 31 sec", "fuel": null, - "sulfur": 7500 + "sulfur": 2501 }, { "group": "guns", @@ -750181,7 +766113,7 @@ "time": 42.36, "timeString": "42 sec", "fuel": null, - "sulfur": 4620 + "sulfur": 1541 }, { "group": "guns", @@ -750229,7 +766161,7 @@ "time": 95.375, "timeString": "1 min 35 sec", "fuel": null, - "sulfur": 6000 + "sulfur": 2001 }, { "group": "guns", @@ -750313,7 +766245,31 @@ "time": 99.23, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 + }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 94, + "quantityTypeId": null, + "time": 9.3, + "timeString": "9 sec", + "fuel": 94, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 400, + "quantityTypeId": "-1211166256", + "time": 43.3, + "timeString": "43 sec", + "fuel": null, + "sulfur": 1332 }, { "group": "explosive", @@ -750361,7 +766317,7 @@ "time": 90.6, "timeString": "1 min 30 sec", "fuel": null, - "sulfur": 5332 + "sulfur": 2000 }, { "group": "guns", @@ -750445,7 +766401,7 @@ "time": 202.8, "timeString": "3 min 22 sec", "fuel": null, - "sulfur": 3639 + "sulfur": 1365 }, { "group": "guns", @@ -750481,7 +766437,7 @@ "time": 245.825, "timeString": "4 min 5 sec", "fuel": null, - "sulfur": 5719 + "sulfur": 2145 }, { "group": "explosive", @@ -750577,7 +766533,7 @@ "time": 157.85, "timeString": "2 min 37 sec", "fuel": null, - "sulfur": 4999 + "sulfur": 1875 }, { "group": "guns", @@ -750637,7 +766593,7 @@ "time": 162.625, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 7500 + "sulfur": 2501 }, { "group": "guns", @@ -750646,8 +766602,8 @@ "caption": "Pistol Bullet", "quantity": 500, "quantityTypeId": "785728077", - "time": 127.9, - "timeString": "2 min 7 sec", + "time": 112.3, + "timeString": "1 min 52 sec", "fuel": null, "sulfur": 1250 }, @@ -750658,8 +766614,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 87, "quantityTypeId": "51984655", - "time": 20.3, - "timeString": "20 sec", + "time": 16.4, + "timeString": "16 sec", "fuel": null, "sulfur": 725 }, @@ -750670,10 +766626,10 @@ "caption": "HV Pistol Ammo", "quantity": 500, "quantityTypeId": "-1691396643", - "time": 127.9, - "timeString": "2 min 7 sec", + "time": 112.3, + "timeString": "1 min 52 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -750757,7 +766713,7 @@ "time": 125.4, "timeString": "2 min 5 sec", "fuel": null, - "sulfur": 5332 + "sulfur": 2000 }, { "group": "melee", @@ -750818,8 +766774,8 @@ "quantityTypeId": null, "time": 41.103210160714, "timeString": "41 sec", - "fuel": 253, - "sulfur": 610 + "fuel": 75, + "sulfur": 300 }, { "group": "explosive", @@ -750843,7 +766799,7 @@ "time": 274, "timeString": "4 min 34 sec", "fuel": null, - "sulfur": 920 + "sulfur": 552 }, { "group": "explosive", @@ -750903,7 +766859,7 @@ "time": 52.1269, "timeString": "52 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "explosive", @@ -750963,7 +766919,7 @@ "time": 313.1, "timeString": "5 min 13 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "explosive", @@ -751167,7 +767123,7 @@ "time": 64.25, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -751227,7 +767183,7 @@ "time": 34.375, "timeString": "34 sec", "fuel": null, - "sulfur": 3480 + "sulfur": 1161 }, { "group": "guns", @@ -751275,7 +767231,7 @@ "time": 332, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 2500 + "sulfur": 834 }, { "group": "guns", @@ -751323,7 +767279,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -751371,7 +767327,7 @@ "time": 25.74, "timeString": "25 sec", "fuel": null, - "sulfur": 3080 + "sulfur": 1027 }, { "group": "guns", @@ -751419,7 +767375,7 @@ "time": 62.5, "timeString": "1 min 2 sec", "fuel": null, - "sulfur": 4000 + "sulfur": 1334 }, { "group": "guns", @@ -751503,7 +767459,31 @@ "time": 64.66, "timeString": "1 min 4 sec", "fuel": null, - "sulfur": 2973 + "sulfur": 1115 + }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 509, + "quantityTypeId": null, + "time": 78.5, + "timeString": "1 min 18 sec", + "fuel": 509, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 267, + "quantityTypeId": "-1211166256", + "time": 26.6, + "timeString": "26 sec", + "fuel": null, + "sulfur": 889 }, { "group": "explosive", @@ -751551,7 +767531,7 @@ "time": 57.8, "timeString": "57 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "guns", @@ -751635,7 +767615,7 @@ "time": 135.15, "timeString": "2 min 15 sec", "fuel": null, - "sulfur": 2426 + "sulfur": 910 }, { "group": "guns", @@ -751671,7 +767651,7 @@ "time": 162.75, "timeString": "2 min 42 sec", "fuel": null, - "sulfur": 3812 + "sulfur": 1430 }, { "group": "explosive", @@ -751767,7 +767747,7 @@ "time": 103.35, "timeString": "1 min 43 sec", "fuel": null, - "sulfur": 3333 + "sulfur": 1250 }, { "group": "guns", @@ -751827,7 +767807,7 @@ "time": 106.95, "timeString": "1 min 46 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -751836,8 +767816,8 @@ "caption": "Pistol Bullet", "quantity": 334, "quantityTypeId": "785728077", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, "sulfur": 835 }, @@ -751848,8 +767828,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 202, "quantityTypeId": "51984655", - "time": 76.3, - "timeString": "1 min 16 sec", + "time": 68.5, + "timeString": "1 min 8 sec", "fuel": null, "sulfur": 1683 }, @@ -751860,10 +767840,10 @@ "caption": "HV Pistol Ammo", "quantity": 334, "quantityTypeId": "-1691396643", - "time": 84, - "timeString": "1 min 24 sec", + "time": 76.2, + "timeString": "1 min 16 sec", "fuel": null, - "sulfur": 4452 + "sulfur": 1670 }, { "group": "guns", @@ -751947,7 +767927,7 @@ "time": 84.89, "timeString": "1 min 24 sec", "fuel": null, - "sulfur": 3559 + "sulfur": 1335 }, { "group": "melee", @@ -752004,12 +767984,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 32, + "quantity": 16, "quantityTypeId": null, - "time": 186, - "timeString": "3 min 6 sec", - "fuel": 8096, - "sulfur": 19520 + "time": 90, + "timeString": "1 min 30 sec", + "fuel": 1200, + "sulfur": 4800 }, { "group": "explosive", @@ -752033,7 +768013,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -752177,7 +768157,7 @@ "time": 19.0641, "timeString": "19 sec", "fuel": null, - "sulfur": 1600 + "sulfur": 534 }, { "group": "explosive", @@ -752237,7 +768217,7 @@ "time": 122.9, "timeString": "2 min 2 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "melee", @@ -752525,7 +768505,7 @@ "time": 25.075, "timeString": "25 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -752609,7 +768589,7 @@ "time": 15, "timeString": "15 sec", "fuel": null, - "sulfur": 1400 + "sulfur": 467 }, { "group": "melee", @@ -752681,7 +768661,7 @@ "time": 131, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 334 }, { "group": "guns", @@ -752729,7 +768709,7 @@ "time": 23.52, "timeString": "23 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -752777,7 +768757,7 @@ "time": 7.32, "timeString": "7 sec", "fuel": null, - "sulfur": 1240 + "sulfur": 414 }, { "group": "guns", @@ -752825,7 +768805,7 @@ "time": 23.05, "timeString": "23 sec", "fuel": null, - "sulfur": 1600 + "sulfur": 534 }, { "group": "guns", @@ -752909,7 +768889,7 @@ "time": 24.4, "timeString": "24 sec", "fuel": null, - "sulfur": 1186 + "sulfur": 445 }, { "group": "melee", @@ -752959,6 +768939,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 200, + "quantityTypeId": null, + "time": 23.3, + "timeString": "23 sec", + "fuel": 200, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 107, + "quantityTypeId": "-1211166256", + "time": 10.6, + "timeString": "10 sec", + "fuel": null, + "sulfur": 356 + }, { "group": "explosive", "which": null, @@ -753005,7 +769009,7 @@ "time": 22.3, "timeString": "22 sec", "fuel": null, - "sulfur": 1426 + "sulfur": 535 }, { "group": "melee", @@ -753125,7 +769129,7 @@ "time": 54, "timeString": "54 sec", "fuel": null, - "sulfur": 973 + "sulfur": 365 }, { "group": "guns", @@ -753161,7 +769165,7 @@ "time": 65.1, "timeString": "1 min 5 sec", "fuel": null, - "sulfur": 1533 + "sulfur": 575 }, { "group": "melee", @@ -753218,8 +769222,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 27, - "timeString": "27 sec", + "time": 20, + "timeString": "20 sec", "fuel": null, "sulfur": null }, @@ -753353,7 +769357,7 @@ "time": 39.6, "timeString": "39 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -753413,7 +769417,7 @@ "time": 42.675, "timeString": "42 sec", "fuel": null, - "sulfur": 2000 + "sulfur": 667 }, { "group": "guns", @@ -753422,8 +769426,8 @@ "caption": "Pistol Bullet", "quantity": 134, "quantityTypeId": "785728077", - "time": 32.8, - "timeString": "32 sec", + "time": 28.9, + "timeString": "28 sec", "fuel": null, "sulfur": 335 }, @@ -753434,8 +769438,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 84, "quantityTypeId": "51984655", - "time": 20, - "timeString": "20 sec", + "time": 16.1, + "timeString": "16 sec", "fuel": null, "sulfur": 700 }, @@ -753446,10 +769450,10 @@ "caption": "HV Pistol Ammo", "quantity": 134, "quantityTypeId": "-1691396643", - "time": 32.8, - "timeString": "32 sec", + "time": 28.9, + "timeString": "28 sec", "fuel": null, - "sulfur": 1786 + "sulfur": 670 }, { "group": "guns", @@ -753641,7 +769645,7 @@ "time": 33.13, "timeString": "33 sec", "fuel": null, - "sulfur": 1426 + "sulfur": 535 }, { "group": "melee", @@ -753680,6 +769684,1916 @@ "sulfur": null } ], + "Motorbike": [ + { + "group": "explosive", + "which": null, + "toolId": "-1843426638", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 0, + "timeString": "0 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "349762871", + "caption": null, + "quantity": 13, + "quantityTypeId": null, + "time": 16, + "timeString": "16 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "-742865266", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 6, + "timeString": "6 sec", + "fuel": 60, + "sulfur": 2800 + }, + { + "group": "explosive", + "which": null, + "toolId": "1638322904", + "caption": null, + "quantity": 120, + "quantityTypeId": null, + "time": 714, + "timeString": "11 min 54 sec", + "fuel": 9000, + "sulfur": 36000 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1841918730", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 400 + }, + { + "group": "torpedo", + "which": null, + "toolId": "-1671551935", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 10, + "timeString": "10 sec", + "fuel": null, + "sulfur": 24 + }, + { + "group": "melee", + "which": null, + "toolId": "-2073432256", + "caption": null, + "quantity": 18, + "quantityTypeId": null, + "time": 279.5, + "timeString": "4 min 39 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-2073432256", + "caption": "Throw", + "quantity": 30, + "quantityTypeId": null, + "time": 1125, + "timeString": "18 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "1248356124", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 10, + "timeString": "10 sec", + "fuel": 60, + "sulfur": 2200 + }, + { + "group": "melee", + "which": null, + "toolId": "-196667575", + "caption": null, + "quantity": 31, + "quantityTypeId": null, + "time": 430, + "timeString": "7 min 10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1488979457", + "caption": null, + "quantity": 7, + "quantityTypeId": null, + "time": 81, + "timeString": "1 min 21 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1488979457", + "caption": "Workbench Refill", + "quantity": 1, + "quantityTypeId": null, + "time": 96.000000000001, + "timeString": "1 min 36 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1536855921", + "caption": null, + "quantity": 24, + "quantityTypeId": null, + "time": 623, + "timeString": "10 min 23 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1536855921", + "caption": "Throw", + "quantity": 15, + "quantityTypeId": null, + "time": 556.5, + "timeString": "9 min 16 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "5.56 Rifle Ammo", + "quantity": 60, + "quantityTypeId": "-1211166256", + "time": 12.1314, + "timeString": "12 sec", + "fuel": null, + "sulfur": 200 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 38, + "quantityTypeId": "-1321651331", + "time": 9.1988, + "timeString": "9 sec", + "fuel": null, + "sulfur": 950 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 57, + "quantityTypeId": "605467368", + "time": 11.7315, + "timeString": "11 sec", + "fuel": null, + "sulfur": 713 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 60, + "quantityTypeId": "1712070256", + "time": 12.1314, + "timeString": "12 sec", + "fuel": null, + "sulfur": 400 + }, + { + "group": "explosive", + "which": null, + "toolId": "1840822026", + "caption": null, + "quantity": 23, + "quantityTypeId": null, + "time": 31.35, + "timeString": "31 sec", + "fuel": null, + "sulfur": 2760 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "5.56 Rifle Ammo", + "quantity": 38, + "quantityTypeId": "-1211166256", + "time": 92.6, + "timeString": "1 min 32 sec", + "fuel": null, + "sulfur": 127 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 28, + "quantityTypeId": "-1321651331", + "time": 65.7, + "timeString": "1 min 5 sec", + "fuel": null, + "sulfur": 700 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 36, + "quantityTypeId": "605467368", + "time": 85.9, + "timeString": "1 min 25 sec", + "fuel": null, + "sulfur": 450 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 38, + "quantityTypeId": "1712070256", + "time": 92.6, + "timeString": "1 min 32 sec", + "fuel": null, + "sulfur": 253 + }, + { + "group": "melee", + "which": null, + "toolId": "1711033574", + "caption": null, + "quantity": 20, + "quantityTypeId": null, + "time": 369, + "timeString": "6 min 9 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1711033574", + "caption": "Throw", + "quantity": 25, + "quantityTypeId": null, + "time": 750, + "timeString": "12 min 30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1814288539", + "caption": null, + "quantity": 19, + "quantityTypeId": null, + "time": 346.3, + "timeString": "5 min 46 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1814288539", + "caption": "Throw", + "quantity": 30, + "quantityTypeId": null, + "time": 1125, + "timeString": "18 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "High Velocity Arrow", + "quantity": 150, + "quantityTypeId": "-1023065463", + "time": 149, + "timeString": "2 min 29 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Wooden Arrow", + "quantity": 120, + "quantityTypeId": "-1234735557", + "time": 119, + "timeString": "1 min 59 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Bone Arrow", + "quantity": 150, + "quantityTypeId": "215754713", + "time": 149, + "timeString": "2 min 29 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "14241751", + "caption": "Hunting Bow", + "quantity": 100, + "quantityTypeId": null, + "time": 99, + "timeString": "1 min 39 sec", + "fuel": 500, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Fire Arrow", + "quantity": 100, + "quantityTypeId": "14241751", + "time": 99, + "timeString": "1 min 39 sec", + "fuel": 500, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1104520648", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 145, + "timeString": "2 min 25 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1978999529", + "caption": null, + "quantity": 7, + "quantityTypeId": null, + "time": 256, + "timeString": "4 min 16 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1978999529", + "caption": "Throw", + "quantity": 4, + "quantityTypeId": null, + "time": 375, + "timeString": "6 min 15 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "High Velocity Arrow", + "quantity": 75, + "quantityTypeId": "-1023065463", + "time": 299, + "timeString": "4 min 59 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Wooden Arrow", + "quantity": 60, + "quantityTypeId": "-1234735557", + "time": 239, + "timeString": "3 min 59 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Bone Arrow", + "quantity": 75, + "quantityTypeId": "215754713", + "time": 299, + "timeString": "4 min 59 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Fire Arrow", + "quantity": 60, + "quantityTypeId": "14241751", + "time": 239, + "timeString": "3 min 59 sec", + "fuel": 300, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "High Velocity Arrow", + "quantity": 125, + "quantityTypeId": "-1023065463", + "time": 446.4, + "timeString": "7 min 26 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Wooden Arrow", + "quantity": 100, + "quantityTypeId": "-1234735557", + "time": 356.4, + "timeString": "5 min 56 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Bone Arrow", + "quantity": 125, + "quantityTypeId": "215754713", + "time": 446.4, + "timeString": "7 min 26 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Fire Arrow", + "quantity": 89, + "quantityTypeId": "14241751", + "time": 316.8, + "timeString": "5 min 16 sec", + "fuel": 445, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "Handmade Shell", + "quantity": 17, + "quantityTypeId": "588596902", + "time": 48, + "timeString": "48 sec", + "fuel": null, + "sulfur": 85 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Buckshot", + "quantity": 15, + "quantityTypeId": "-1685290200", + "time": 42, + "timeString": "42 sec", + "fuel": null, + "sulfur": 150 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Incendiary Shell", + "quantity": 24, + "quantityTypeId": "-1036635990", + "time": 66.5, + "timeString": "1 min 6 sec", + "fuel": null, + "sulfur": 480 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Slug", + "quantity": 38, + "quantityTypeId": "-727717969", + "time": 108.5, + "timeString": "1 min 48 sec", + "fuel": null, + "sulfur": 380 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "Handmade Shell", + "quantity": 17, + "quantityTypeId": "588596902", + "time": 43.56, + "timeString": "43 sec", + "fuel": null, + "sulfur": 85 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Buckshot", + "quantity": 15, + "quantityTypeId": "-1685290200", + "time": 38.2, + "timeString": "38 sec", + "fuel": null, + "sulfur": 150 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Incendiary Shell", + "quantity": 24, + "quantityTypeId": "-1036635990", + "time": 62.32, + "timeString": "1 min 2 sec", + "fuel": null, + "sulfur": 480 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Slug", + "quantity": 38, + "quantityTypeId": "-727717969", + "time": 99.84, + "timeString": "1 min 39 sec", + "fuel": null, + "sulfur": 380 + }, + { + "group": "explosive", + "which": null, + "toolId": "143803535", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 9.7, + "timeString": "9 sec", + "fuel": null, + "sulfur": 360 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1215753368", + "caption": null, + "quantity": 1765, + "quantityTypeId": null, + "time": 234.2, + "timeString": "3 min 54 sec", + "fuel": 1765, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "Pistol Bullet", + "quantity": 75, + "quantityTypeId": "785728077", + "time": 19.475, + "timeString": "19 sec", + "fuel": null, + "sulfur": 188 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "Incendiary Pistol Bullet", + "quantity": 71, + "quantityTypeId": "51984655", + "time": 16.2375, + "timeString": "16 sec", + "fuel": null, + "sulfur": 591 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "HV Pistol Ammo", + "quantity": 75, + "quantityTypeId": "-1691396643", + "time": 19.475, + "timeString": "19 sec", + "fuel": null, + "sulfur": 375 + }, + { + "group": "guns", + "which": null, + "toolId": "-1123473824", + "caption": "40mm Shotgun Round", + "quantity": 12, + "quantityTypeId": "1055319033", + "time": 10, + "timeString": "10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1252059217", + "caption": null, + "quantity": 4, + "quantityTypeId": null, + "time": 248.7, + "timeString": "4 min 8 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1252059217", + "caption": "Throw", + "quantity": 5, + "quantityTypeId": null, + "time": 750, + "timeString": "12 min 30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "5.56 Rifle Ammo", + "quantity": 53, + "quantityTypeId": "-1211166256", + "time": 6.5, + "timeString": "6 sec", + "fuel": null, + "sulfur": 176 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 35, + "quantityTypeId": "-1321651331", + "time": 4.25, + "timeString": "4 sec", + "fuel": null, + "sulfur": 875 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 50, + "quantityTypeId": "605467368", + "time": 6.125, + "timeString": "6 sec", + "fuel": null, + "sulfur": 625 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 53, + "quantityTypeId": "1712070256", + "time": 6.5, + "timeString": "6 sec", + "fuel": null, + "sulfur": 354 + }, + { + "group": "melee", + "which": null, + "toolId": "2040726127", + "caption": null, + "quantity": 17, + "quantityTypeId": null, + "time": 166.5, + "timeString": "2 min 46 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "2040726127", + "caption": "Throw", + "quantity": 6, + "quantityTypeId": null, + "time": 225, + "timeString": "3 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "5.56 Rifle Ammo", + "quantity": 38, + "quantityTypeId": "-1211166256", + "time": 99, + "timeString": "1 min 39 sec", + "fuel": null, + "sulfur": 127 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 28, + "quantityTypeId": "-1321651331", + "time": 72.2, + "timeString": "1 min 12 sec", + "fuel": null, + "sulfur": 700 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 36, + "quantityTypeId": "605467368", + "time": 93.8, + "timeString": "1 min 33 sec", + "fuel": null, + "sulfur": 450 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 38, + "quantityTypeId": "1712070256", + "time": 99, + "timeString": "1 min 39 sec", + "fuel": null, + "sulfur": 253 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "5.56 Rifle Ammo", + "quantity": 75, + "quantityTypeId": "-1211166256", + "time": 16.64, + "timeString": "16 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 43, + "quantityTypeId": "-1321651331", + "time": 8.92, + "timeString": "8 sec", + "fuel": null, + "sulfur": 1075 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 71, + "quantityTypeId": "605467368", + "time": 16.16, + "timeString": "16 sec", + "fuel": null, + "sulfur": 888 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 75, + "quantityTypeId": "1712070256", + "time": 16.64, + "timeString": "16 sec", + "fuel": null, + "sulfur": 500 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "5.56 Rifle Ammo", + "quantity": 47, + "quantityTypeId": "-1211166256", + "time": 5.52, + "timeString": "5 sec", + "fuel": null, + "sulfur": 157 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 32, + "quantityTypeId": "-1321651331", + "time": 3.72, + "timeString": "3 sec", + "fuel": null, + "sulfur": 800 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 44, + "quantityTypeId": "605467368", + "time": 5.16, + "timeString": "5 sec", + "fuel": null, + "sulfur": 550 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 47, + "quantityTypeId": "1712070256", + "time": 5.52, + "timeString": "5 sec", + "fuel": null, + "sulfur": 313 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "5.56 Rifle Ammo", + "quantity": 60, + "quantityTypeId": "-1211166256", + "time": 16.475, + "timeString": "16 sec", + "fuel": null, + "sulfur": 200 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 38, + "quantityTypeId": "-1321651331", + "time": 9.55, + "timeString": "9 sec", + "fuel": null, + "sulfur": 950 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 57, + "quantityTypeId": "605467368", + "time": 15.95, + "timeString": "15 sec", + "fuel": null, + "sulfur": 713 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 60, + "quantityTypeId": "1712070256", + "time": 16.475, + "timeString": "16 sec", + "fuel": null, + "sulfur": 400 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "Handmade Shell", + "quantity": 21, + "quantityTypeId": "588596902", + "time": 22.5, + "timeString": "22 sec", + "fuel": null, + "sulfur": 105 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Buckshot", + "quantity": 18, + "quantityTypeId": "-1685290200", + "time": 16.1, + "timeString": "16 sec", + "fuel": null, + "sulfur": 180 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Incendiary Shell", + "quantity": 30, + "quantityTypeId": "-1036635990", + "time": 30.7, + "timeString": "30 sec", + "fuel": null, + "sulfur": 600 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Slug", + "quantity": 47, + "quantityTypeId": "-727717969", + "time": 52.3, + "timeString": "52 sec", + "fuel": null, + "sulfur": 470 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "Pistol Bullet", + "quantity": 67, + "quantityTypeId": "785728077", + "time": 18.86, + "timeString": "18 sec", + "fuel": null, + "sulfur": 168 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "Incendiary Pistol Bullet", + "quantity": 63, + "quantityTypeId": "51984655", + "time": 18.26, + "timeString": "18 sec", + "fuel": null, + "sulfur": 525 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "HV Pistol Ammo", + "quantity": 67, + "quantityTypeId": "-1691396643", + "time": 18.86, + "timeString": "18 sec", + "fuel": null, + "sulfur": 335 + }, + { + "group": "melee", + "which": null, + "toolId": "-1966748496", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 205, + "timeString": "3 min 25 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1966748496", + "caption": "Throw", + "quantity": 4, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1137865085", + "caption": null, + "quantity": 9, + "quantityTypeId": null, + "time": 223, + "timeString": "3 min 43 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1137865085", + "caption": "Throw", + "quantity": 8, + "quantityTypeId": null, + "time": 562.5, + "timeString": "9 min 22 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1500, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": 1500, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 80, + "quantityTypeId": "-1211166256", + "time": 7.9, + "timeString": "7 sec", + "fuel": null, + "sulfur": 266 + }, + { + "group": "explosive", + "which": null, + "toolId": "1556365900", + "caption": null, + "quantity": 172, + "quantityTypeId": null, + "time": 189.5, + "timeString": "3 min 9 sec", + "fuel": 8600, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "Pistol Bullet", + "quantity": 80, + "quantityTypeId": "785728077", + "time": 15.7, + "timeString": "15 sec", + "fuel": null, + "sulfur": 200 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "Incendiary Pistol Bullet", + "quantity": 76, + "quantityTypeId": "51984655", + "time": 15.3, + "timeString": "15 sec", + "fuel": null, + "sulfur": 633 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "HV Pistol Ammo", + "quantity": 80, + "quantityTypeId": "-1691396643", + "time": 15.7, + "timeString": "15 sec", + "fuel": null, + "sulfur": 400 + }, + { + "group": "guns", + "which": null, + "toolId": "1953903201", + "caption": "Nailgun Nails", + "quantity": 334, + "quantityTypeId": "-2097376851", + "time": 108.95, + "timeString": "1 min 48 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1491189398", + "caption": null, + "quantity": 5, + "quantityTypeId": null, + "time": 254, + "timeString": "4 min 14 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1491189398", + "caption": "Throw", + "quantity": 2, + "quantityTypeId": null, + "time": 225, + "timeString": "3 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1302129395", + "caption": null, + "quantity": 5, + "quantityTypeId": null, + "time": 379, + "timeString": "6 min 19 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1302129395", + "caption": "Throw", + "quantity": 4, + "quantityTypeId": null, + "time": 562.5, + "timeString": "9 min 22 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "Handmade Shell", + "quantity": 17, + "quantityTypeId": "588596902", + "time": 72, + "timeString": "1 min 12 sec", + "fuel": null, + "sulfur": 85 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Buckshot", + "quantity": 15, + "quantityTypeId": "-1685290200", + "time": 63, + "timeString": "1 min 3 sec", + "fuel": null, + "sulfur": 150 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Incendiary Shell", + "quantity": 24, + "quantityTypeId": "-1036635990", + "time": 103.5, + "timeString": "1 min 43 sec", + "fuel": null, + "sulfur": 480 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Slug", + "quantity": 38, + "quantityTypeId": "-727717969", + "time": 166.5, + "timeString": "2 min 46 sec", + "fuel": null, + "sulfur": 380 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "Pistol Bullet", + "quantity": 55, + "quantityTypeId": "785728077", + "time": 40.5, + "timeString": "40 sec", + "fuel": null, + "sulfur": 138 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "Incendiary Pistol Bullet", + "quantity": 52, + "quantityTypeId": "51984655", + "time": 36.45, + "timeString": "36 sec", + "fuel": null, + "sulfur": 433 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "HV Pistol Ammo", + "quantity": 55, + "quantityTypeId": "-1691396643", + "time": 40.5, + "timeString": "40 sec", + "fuel": null, + "sulfur": 275 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "Pistol Bullet", + "quantity": 86, + "quantityTypeId": "785728077", + "time": 47.125, + "timeString": "47 sec", + "fuel": null, + "sulfur": 215 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "Incendiary Pistol Bullet", + "quantity": 81, + "quantityTypeId": "51984655", + "time": 46.25, + "timeString": "46 sec", + "fuel": null, + "sulfur": 675 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "HV Pistol Ammo", + "quantity": 86, + "quantityTypeId": "-1691396643", + "time": 47.125, + "timeString": "47 sec", + "fuel": null, + "sulfur": 430 + }, + { + "group": "melee", + "which": null, + "toolId": "963906841", + "caption": null, + "quantity": 18, + "quantityTypeId": null, + "time": 797, + "timeString": "13 min 17 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "963906841", + "caption": "Throw", + "quantity": 24, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-262590403", + "caption": null, + "quantity": 4, + "quantityTypeId": null, + "time": 238, + "timeString": "3 min 58 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-262590403", + "caption": "Throw", + "quantity": 3, + "quantityTypeId": null, + "time": 450, + "timeString": "7 min 30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1506397857", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 152, + "timeString": "2 min 32 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1506397857", + "caption": "Throw", + "quantity": 3, + "quantityTypeId": null, + "time": 450, + "timeString": "7 min 30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1780802565", + "caption": null, + "quantity": 4, + "quantityTypeId": null, + "time": 238, + "timeString": "3 min 58 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1780802565", + "caption": "Throw", + "quantity": 4, + "quantityTypeId": null, + "time": 750, + "timeString": "12 min 30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "-1878475007", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 12, + "timeString": "12 sec", + "fuel": null, + "sulfur": 1440 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "Handmade Shell", + "quantity": 17, + "quantityTypeId": "588596902", + "time": 26.4, + "timeString": "26 sec", + "fuel": null, + "sulfur": 85 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Buckshot", + "quantity": 15, + "quantityTypeId": "-1685290200", + "time": 24.2, + "timeString": "24 sec", + "fuel": null, + "sulfur": 150 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Incendiary Shell", + "quantity": 24, + "quantityTypeId": "-1036635990", + "time": 38.5, + "timeString": "38 sec", + "fuel": null, + "sulfur": 480 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Slug", + "quantity": 38, + "quantityTypeId": "-727717969", + "time": 67.1, + "timeString": "1 min 7 sec", + "fuel": null, + "sulfur": 380 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "Pistol Bullet", + "quantity": 75, + "quantityTypeId": "785728077", + "time": 30.35, + "timeString": "30 sec", + "fuel": null, + "sulfur": 188 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "Incendiary Pistol Bullet", + "quantity": 71, + "quantityTypeId": "51984655", + "time": 29.75, + "timeString": "29 sec", + "fuel": null, + "sulfur": 591 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "HV Pistol Ammo", + "quantity": 75, + "quantityTypeId": "-1691396643", + "time": 30.35, + "timeString": "30 sec", + "fuel": null, + "sulfur": 375 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "5.56 Rifle Ammo", + "quantity": 75, + "quantityTypeId": "-1211166256", + "time": 29.85, + "timeString": "29 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1321651331", + "caption": "Semi-Automatic Rifle", + "quantity": 43, + "quantityTypeId": null, + "time": 15.8, + "timeString": "15 sec", + "fuel": null, + "sulfur": 1075 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 43, + "quantityTypeId": "-1321651331", + "time": 15.8, + "timeString": "15 sec", + "fuel": null, + "sulfur": 1075 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 71, + "quantityTypeId": "605467368", + "time": 29.15, + "timeString": "29 sec", + "fuel": null, + "sulfur": 888 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 75, + "quantityTypeId": "1712070256", + "time": 29.85, + "timeString": "29 sec", + "fuel": null, + "sulfur": 500 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "Pistol Bullet", + "quantity": 100, + "quantityTypeId": "785728077", + "time": 21.6, + "timeString": "21 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "Incendiary Pistol Bullet", + "quantity": 95, + "quantityTypeId": "51984655", + "time": 21.1, + "timeString": "21 sec", + "fuel": null, + "sulfur": 791 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "HV Pistol Ammo", + "quantity": 100, + "quantityTypeId": "-1691396643", + "time": 21.6, + "timeString": "21 sec", + "fuel": null, + "sulfur": 500 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "Handmade Shell", + "quantity": 23, + "quantityTypeId": "588596902", + "time": 22.15, + "timeString": "22 sec", + "fuel": null, + "sulfur": 115 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Buckshot", + "quantity": 20, + "quantityTypeId": "-1685290200", + "time": 21.4, + "timeString": "21 sec", + "fuel": null, + "sulfur": 200 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Incendiary Shell", + "quantity": 32, + "quantityTypeId": "-1036635990", + "time": 35.5, + "timeString": "35 sec", + "fuel": null, + "sulfur": 640 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Slug", + "quantity": 50, + "quantityTypeId": "-727717969", + "time": 56.65, + "timeString": "56 sec", + "fuel": null, + "sulfur": 500 + }, + { + "group": "guns", + "which": null, + "toolId": "-1517740219", + "caption": "Speargun Spear", + "quantity": 120, + "quantityTypeId": "-1800345240", + "time": 428.4, + "timeString": "7 min 8 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1583967946", + "caption": null, + "quantity": 18, + "quantityTypeId": null, + "time": 432.8, + "timeString": "7 min 12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1583967946", + "caption": "Throw", + "quantity": 30, + "quantityTypeId": null, + "time": 1125, + "timeString": "18 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "171931394", + "caption": null, + "quantity": 17, + "quantityTypeId": null, + "time": 376, + "timeString": "6 min 16 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "171931394", + "caption": "Throw", + "quantity": 30, + "quantityTypeId": null, + "time": 1125, + "timeString": "18 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1602646136", + "caption": null, + "quantity": 20, + "quantityTypeId": null, + "time": 341.5, + "timeString": "5 min 41 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1602646136", + "caption": "Throw", + "quantity": 6, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1469578201", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 205, + "timeString": "3 min 25 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1469578201", + "caption": "Throw", + "quantity": 4, + "quantityTypeId": null, + "time": 375, + "timeString": "6 min 15 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1326180354", + "caption": null, + "quantity": 5, + "quantityTypeId": null, + "time": 191.5, + "timeString": "3 min 11 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1326180354", + "caption": "Throw", + "quantity": 5, + "quantityTypeId": null, + "time": 562.5, + "timeString": "9 min 22 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "Pistol Bullet", + "quantity": 80, + "quantityTypeId": "785728077", + "time": 21.88, + "timeString": "21 sec", + "fuel": null, + "sulfur": 200 + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "Incendiary Pistol Bullet", + "quantity": 76, + "quantityTypeId": "51984655", + "time": 21.36, + "timeString": "21 sec", + "fuel": null, + "sulfur": 633 + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "HV Pistol Ammo", + "quantity": 80, + "quantityTypeId": "-1691396643", + "time": 21.88, + "timeString": "21 sec", + "fuel": null, + "sulfur": 400 + }, + { + "group": "melee", + "which": null, + "toolId": "795236088", + "caption": null, + "quantity": 47, + "quantityTypeId": null, + "time": 1606, + "timeString": "26 min 46 sec", + "fuel": 47, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "795236088", + "caption": "Lit", + "quantity": 143, + "quantityTypeId": null, + "time": 1442, + "timeString": "24 min 2 sec", + "fuel": 143, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1540934679", + "caption": null, + "quantity": 17, + "quantityTypeId": null, + "time": 466, + "timeString": "7 min 46 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1540934679", + "caption": "Throw", + "quantity": 6, + "quantityTypeId": null, + "time": 225, + "timeString": "3 min 45 sec", + "fuel": null, + "sulfur": null + } + ], "RHIB": [ { "group": "explosive", @@ -753722,12 +771636,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 400, + "quantity": 200, "quantityTypeId": null, - "time": 2394, - "timeString": "39 min 54 sec", - "fuel": 101200, - "sulfur": 244000 + "time": 1194, + "timeString": "19 min 54 sec", + "fuel": 15000, + "sulfur": 60000 }, { "group": "explosive", @@ -753751,7 +771665,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -753895,7 +771809,7 @@ "time": 273.9678, "timeString": "4 min 33 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "explosive", @@ -753955,7 +771869,7 @@ "time": 1575.6, "timeString": "26 min 15 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "melee", @@ -754243,7 +772157,7 @@ "time": 332.85, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -754327,7 +772241,7 @@ "time": 197.875, "timeString": "3 min 17 sec", "fuel": null, - "sulfur": 17400 + "sulfur": 5803 }, { "group": "melee", @@ -754399,7 +772313,7 @@ "time": 1672, "timeString": "27 min 52 sec", "fuel": null, - "sulfur": 12500 + "sulfur": 4169 }, { "group": "guns", @@ -754447,7 +772361,7 @@ "time": 308.96, "timeString": "5 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -754495,7 +772409,7 @@ "time": 143.94, "timeString": "2 min 23 sec", "fuel": null, - "sulfur": 15400 + "sulfur": 5136 }, { "group": "guns", @@ -754543,7 +772457,7 @@ "time": 325.5, "timeString": "5 min 25 sec", "fuel": null, - "sulfur": 20000 + "sulfur": 6670 }, { "group": "guns", @@ -754627,7 +772541,7 @@ "time": 332.41, "timeString": "5 min 32 sec", "fuel": null, - "sulfur": 14823 + "sulfur": 5560 }, { "group": "melee", @@ -754677,6 +772591,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 2500, + "quantityTypeId": null, + "time": 304.3, + "timeString": "5 min 4 sec", + "fuel": 2500, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 1334, + "quantityTypeId": "-1211166256", + "time": 146.9, + "timeString": "2 min 26 sec", + "fuel": null, + "sulfur": 4442 + }, { "group": "explosive", "which": null, @@ -754723,7 +772661,7 @@ "time": 304.9, "timeString": "5 min 4 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -754843,7 +772781,7 @@ "time": 679.95, "timeString": "11 min 19 sec", "fuel": null, - "sulfur": 12130 + "sulfur": 4550 }, { "group": "guns", @@ -754879,7 +772817,7 @@ "time": 823.95, "timeString": "13 min 43 sec", "fuel": null, - "sulfur": 19049 + "sulfur": 7145 }, { "group": "melee", @@ -754934,10 +772872,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 23, + "quantity": 22, "quantityTypeId": null, - "time": 1689, - "timeString": "28 min 9 sec", + "time": 1271, + "timeString": "21 min 11 sec", "fuel": null, "sulfur": null }, @@ -755071,7 +773009,7 @@ "time": 528.35, "timeString": "8 min 48 sec", "fuel": null, - "sulfur": 16663 + "sulfur": 6250 }, { "group": "guns", @@ -755131,7 +773069,7 @@ "time": 548.125, "timeString": "9 min 8 sec", "fuel": null, - "sulfur": 25000 + "sulfur": 8338 }, { "group": "guns", @@ -755140,8 +773078,8 @@ "caption": "Pistol Bullet", "quantity": 1667, "quantityTypeId": "785728077", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, "sulfur": 4168 }, @@ -755152,8 +773090,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 1042, "quantityTypeId": "51984655", - "time": 271.8, - "timeString": "4 min 31 sec", + "time": 236.7, + "timeString": "3 min 56 sec", "fuel": null, "sulfur": 8680 }, @@ -755164,10 +773102,10 @@ "caption": "HV Pistol Ammo", "quantity": 1667, "quantityTypeId": "-1691396643", - "time": 435.7, - "timeString": "7 min 15 sec", + "time": 381.1, + "timeString": "6 min 21 sec", "fuel": null, - "sulfur": 22221 + "sulfur": 8335 }, { "group": "guns", @@ -755359,7 +773297,7 @@ "time": 428.71, "timeString": "7 min 8 sec", "fuel": null, - "sulfur": 17782 + "sulfur": 6670 }, { "group": "melee", @@ -755440,12 +773378,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 20, + "quantity": 10, "quantityTypeId": null, - "time": 114, - "timeString": "1 min 54 sec", - "fuel": 5060, - "sulfur": 12200 + "time": 54, + "timeString": "54 sec", + "fuel": 750, + "sulfur": 3000 }, { "group": "explosive", @@ -755481,7 +773419,7 @@ "time": 34, "timeString": "34 sec", "fuel": null, - "sulfur": 120 + "sulfur": 72 }, { "group": "turret", @@ -755589,7 +773527,7 @@ "time": 108.6538, "timeString": "1 min 48 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "explosive", @@ -755649,7 +773587,7 @@ "time": 627.9, "timeString": "10 min 27 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "melee", @@ -755877,7 +773815,7 @@ "time": 131.4, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -755949,7 +773887,7 @@ "time": 75.25, "timeString": "1 min 15 sec", "fuel": null, - "sulfur": 6960 + "sulfur": 2321 }, { "group": "guns", @@ -755997,7 +773935,7 @@ "time": 667, "timeString": "11 min 7 sec", "fuel": null, - "sulfur": 5000 + "sulfur": 1668 }, { "group": "guns", @@ -756045,7 +773983,7 @@ "time": 121.96, "timeString": "2 min 1 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -756093,7 +774031,7 @@ "time": 58.98, "timeString": "58 sec", "fuel": null, - "sulfur": 6160 + "sulfur": 2054 }, { "group": "guns", @@ -756141,7 +774079,7 @@ "time": 128.25, "timeString": "2 min 8 sec", "fuel": null, - "sulfur": 8000 + "sulfur": 2668 }, { "group": "guns", @@ -756225,7 +774163,7 @@ "time": 131.56, "timeString": "2 min 11 sec", "fuel": null, - "sulfur": 5932 + "sulfur": 2225 }, { "group": "melee", @@ -756251,6 +774189,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 126, + "quantityTypeId": null, + "time": 12.5, + "timeString": "12 sec", + "fuel": 126, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 534, + "quantityTypeId": "-1211166256", + "time": 56.7, + "timeString": "56 sec", + "fuel": null, + "sulfur": 1778 + }, { "group": "explosive", "which": null, @@ -756297,7 +774259,7 @@ "time": 119.6, "timeString": "1 min 59 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -756393,7 +774355,7 @@ "time": 270.45, "timeString": "4 min 30 sec", "fuel": null, - "sulfur": 4852 + "sulfur": 1820 }, { "group": "guns", @@ -756429,7 +774391,7 @@ "time": 328.9, "timeString": "5 min 28 sec", "fuel": null, - "sulfur": 7625 + "sulfur": 2860 }, { "group": "melee", @@ -756462,8 +774424,8 @@ "caption": null, "quantity": 1, "quantityTypeId": null, - "time": 34, - "timeString": "34 sec", + "time": 25, + "timeString": "25 sec", "fuel": null, "sulfur": null }, @@ -756573,7 +774535,7 @@ "time": 209.6, "timeString": "3 min 29 sec", "fuel": null, - "sulfur": 6665 + "sulfur": 2500 }, { "group": "guns", @@ -756633,7 +774595,7 @@ "time": 218.3, "timeString": "3 min 38 sec", "fuel": null, - "sulfur": 10000 + "sulfur": 3335 }, { "group": "guns", @@ -756642,8 +774604,8 @@ "caption": "Pistol Bullet", "quantity": 667, "quantityTypeId": "785728077", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, "sulfur": 1668 }, @@ -756654,8 +774616,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 115, "quantityTypeId": "51984655", - "time": 27, - "timeString": "27 sec", + "time": 23.1, + "timeString": "23 sec", "fuel": null, "sulfur": 958 }, @@ -756666,10 +774628,10 @@ "caption": "HV Pistol Ammo", "quantity": 667, "quantityTypeId": "-1691396643", - "time": 171.9, - "timeString": "2 min 51 sec", + "time": 152.4, + "timeString": "2 min 32 sec", "fuel": null, - "sulfur": 8891 + "sulfur": 3335 }, { "group": "guns", @@ -756777,7 +774739,7 @@ "time": 169.91, "timeString": "2 min 49 sec", "fuel": null, - "sulfur": 7118 + "sulfur": 2670 }, { "group": "melee", @@ -756804,6 +774766,1916 @@ "sulfur": null } ], + "Sidecar Motorbike": [ + { + "group": "explosive", + "which": null, + "toolId": "-1843426638", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 0, + "timeString": "0 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "349762871", + "caption": null, + "quantity": 15, + "quantityTypeId": null, + "time": 16.8, + "timeString": "16 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "-742865266", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 12, + "timeString": "12 sec", + "fuel": 90, + "sulfur": 4200 + }, + { + "group": "explosive", + "which": null, + "toolId": "1638322904", + "caption": null, + "quantity": 140, + "quantityTypeId": null, + "time": 834, + "timeString": "13 min 54 sec", + "fuel": 10500, + "sulfur": 42000 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1841918730", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 400 + }, + { + "group": "torpedo", + "which": null, + "toolId": "-1671551935", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 10, + "timeString": "10 sec", + "fuel": null, + "sulfur": 24 + }, + { + "group": "melee", + "which": null, + "toolId": "-2073432256", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 326.6, + "timeString": "5 min 26 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-2073432256", + "caption": "Throw", + "quantity": 35, + "quantityTypeId": null, + "time": 1312.5, + "timeString": "21 min 52 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "1248356124", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 10, + "timeString": "10 sec", + "fuel": 60, + "sulfur": 2200 + }, + { + "group": "melee", + "which": null, + "toolId": "-196667575", + "caption": null, + "quantity": 36, + "quantityTypeId": null, + "time": 502, + "timeString": "8 min 22 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1488979457", + "caption": null, + "quantity": 8, + "quantityTypeId": null, + "time": 94.6, + "timeString": "1 min 34 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1488979457", + "caption": "Workbench Refill", + "quantity": 1, + "quantityTypeId": null, + "time": 114.6, + "timeString": "1 min 54 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1536855921", + "caption": null, + "quantity": 27, + "quantityTypeId": null, + "time": 726, + "timeString": "12 min 6 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1536855921", + "caption": "Throw", + "quantity": 18, + "quantityTypeId": null, + "time": 649.5, + "timeString": "10 min 49 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "5.56 Rifle Ammo", + "quantity": 70, + "quantityTypeId": "-1211166256", + "time": 17.7311, + "timeString": "17 sec", + "fuel": null, + "sulfur": 233 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 44, + "quantityTypeId": "-1321651331", + "time": 9.9986, + "timeString": "9 sec", + "fuel": null, + "sulfur": 1100 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "605467368", + "time": 17.3312, + "timeString": "17 sec", + "fuel": null, + "sulfur": 838 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 70, + "quantityTypeId": "1712070256", + "time": 17.7311, + "timeString": "17 sec", + "fuel": null, + "sulfur": 467 + }, + { + "group": "explosive", + "which": null, + "toolId": "1840822026", + "caption": null, + "quantity": 26, + "quantityTypeId": null, + "time": 34.95, + "timeString": "34 sec", + "fuel": null, + "sulfur": 3120 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "5.56 Rifle Ammo", + "quantity": 44, + "quantityTypeId": "-1211166256", + "time": 106.1, + "timeString": "1 min 46 sec", + "fuel": null, + "sulfur": 147 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 32, + "quantityTypeId": "-1321651331", + "time": 75.8, + "timeString": "1 min 15 sec", + "fuel": null, + "sulfur": 800 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 42, + "quantityTypeId": "605467368", + "time": 102.7, + "timeString": "1 min 42 sec", + "fuel": null, + "sulfur": 525 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 44, + "quantityTypeId": "1712070256", + "time": 106.1, + "timeString": "1 min 46 sec", + "fuel": null, + "sulfur": 293 + }, + { + "group": "melee", + "which": null, + "toolId": "1711033574", + "caption": null, + "quantity": 24, + "quantityTypeId": null, + "time": 431.8, + "timeString": "7 min 11 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1711033574", + "caption": "Throw", + "quantity": 30, + "quantityTypeId": null, + "time": 876, + "timeString": "14 min 36 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1814288539", + "caption": null, + "quantity": 22, + "quantityTypeId": null, + "time": 403.9, + "timeString": "6 min 43 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1814288539", + "caption": "Throw", + "quantity": 35, + "quantityTypeId": null, + "time": 1312.5, + "timeString": "21 min 52 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "High Velocity Arrow", + "quantity": 175, + "quantityTypeId": "-1023065463", + "time": 174, + "timeString": "2 min 54 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Wooden Arrow", + "quantity": 140, + "quantityTypeId": "-1234735557", + "time": 139, + "timeString": "2 min 19 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Bone Arrow", + "quantity": 175, + "quantityTypeId": "215754713", + "time": 174, + "timeString": "2 min 54 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "14241751", + "caption": "Hunting Bow", + "quantity": 117, + "quantityTypeId": null, + "time": 116, + "timeString": "1 min 56 sec", + "fuel": 585, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Fire Arrow", + "quantity": 117, + "quantityTypeId": "14241751", + "time": 116, + "timeString": "1 min 56 sec", + "fuel": 585, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1104520648", + "caption": null, + "quantity": 24, + "quantityTypeId": null, + "time": 169, + "timeString": "2 min 49 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1978999529", + "caption": null, + "quantity": 8, + "quantityTypeId": null, + "time": 299, + "timeString": "4 min 59 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1978999529", + "caption": "Throw", + "quantity": 5, + "quantityTypeId": null, + "time": 438, + "timeString": "7 min 18 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "High Velocity Arrow", + "quantity": 88, + "quantityTypeId": "-1023065463", + "time": 351, + "timeString": "5 min 51 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Wooden Arrow", + "quantity": 70, + "quantityTypeId": "-1234735557", + "time": 279, + "timeString": "4 min 39 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Bone Arrow", + "quantity": 88, + "quantityTypeId": "215754713", + "time": 351, + "timeString": "5 min 51 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Fire Arrow", + "quantity": 70, + "quantityTypeId": "14241751", + "time": 279, + "timeString": "4 min 39 sec", + "fuel": 350, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "High Velocity Arrow", + "quantity": 146, + "quantityTypeId": "-1023065463", + "time": 522, + "timeString": "8 min 42 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Wooden Arrow", + "quantity": 117, + "quantityTypeId": "-1234735557", + "time": 417.6, + "timeString": "6 min 57 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Bone Arrow", + "quantity": 146, + "quantityTypeId": "215754713", + "time": 522, + "timeString": "8 min 42 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Fire Arrow", + "quantity": 103, + "quantityTypeId": "14241751", + "time": 367.2, + "timeString": "6 min 7 sec", + "fuel": 515, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "Handmade Shell", + "quantity": 20, + "quantityTypeId": "588596902", + "time": 54.5, + "timeString": "54 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Buckshot", + "quantity": 17, + "quantityTypeId": "-1685290200", + "time": 48, + "timeString": "48 sec", + "fuel": null, + "sulfur": 170 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Incendiary Shell", + "quantity": 28, + "quantityTypeId": "-1036635990", + "time": 78.5, + "timeString": "1 min 18 sec", + "fuel": null, + "sulfur": 560 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Slug", + "quantity": 44, + "quantityTypeId": "-727717969", + "time": 126.5, + "timeString": "2 min 6 sec", + "fuel": null, + "sulfur": 440 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "Handmade Shell", + "quantity": 20, + "quantityTypeId": "588596902", + "time": 51.6, + "timeString": "51 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Buckshot", + "quantity": 17, + "quantityTypeId": "-1685290200", + "time": 43.56, + "timeString": "43 sec", + "fuel": null, + "sulfur": 170 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Incendiary Shell", + "quantity": 28, + "quantityTypeId": "-1036635990", + "time": 73.04, + "timeString": "1 min 13 sec", + "fuel": null, + "sulfur": 560 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Slug", + "quantity": 44, + "quantityTypeId": "-727717969", + "time": 115.92, + "timeString": "1 min 55 sec", + "fuel": null, + "sulfur": 440 + }, + { + "group": "explosive", + "which": null, + "toolId": "143803535", + "caption": null, + "quantity": 7, + "quantityTypeId": null, + "time": 10.9, + "timeString": "10 sec", + "fuel": null, + "sulfur": 420 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1215753368", + "caption": null, + "quantity": 2059, + "quantityTypeId": null, + "time": 273.8, + "timeString": "4 min 33 sec", + "fuel": 2059, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "Pistol Bullet", + "quantity": 88, + "quantityTypeId": "785728077", + "time": 20.9375, + "timeString": "20 sec", + "fuel": null, + "sulfur": 220 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "Incendiary Pistol Bullet", + "quantity": 83, + "quantityTypeId": "51984655", + "time": 20.375, + "timeString": "20 sec", + "fuel": null, + "sulfur": 691 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "HV Pistol Ammo", + "quantity": 88, + "quantityTypeId": "-1691396643", + "time": 20.9375, + "timeString": "20 sec", + "fuel": null, + "sulfur": 440 + }, + { + "group": "guns", + "which": null, + "toolId": "-1123473824", + "caption": "40mm Shotgun Round", + "quantity": 13, + "quantityTypeId": "1055319033", + "time": 16, + "timeString": "16 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1252059217", + "caption": null, + "quantity": 5, + "quantityTypeId": null, + "time": 291.1, + "timeString": "4 min 51 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1252059217", + "caption": "Throw", + "quantity": 6, + "quantityTypeId": null, + "time": 876, + "timeString": "14 min 36 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "5.56 Rifle Ammo", + "quantity": 61, + "quantityTypeId": "-1211166256", + "time": 13.875, + "timeString": "13 sec", + "fuel": null, + "sulfur": 203 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "-1321651331", + "time": 4.875, + "timeString": "4 sec", + "fuel": null, + "sulfur": 1000 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 58, + "quantityTypeId": "605467368", + "time": 7.125, + "timeString": "7 sec", + "fuel": null, + "sulfur": 725 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 61, + "quantityTypeId": "1712070256", + "time": 13.875, + "timeString": "13 sec", + "fuel": null, + "sulfur": 407 + }, + { + "group": "melee", + "which": null, + "toolId": "2040726127", + "caption": null, + "quantity": 20, + "quantityTypeId": null, + "time": 194, + "timeString": "3 min 14 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "2040726127", + "caption": "Throw", + "quantity": 7, + "quantityTypeId": null, + "time": 262.5, + "timeString": "4 min 22 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "5.56 Rifle Ammo", + "quantity": 44, + "quantityTypeId": "-1211166256", + "time": 115, + "timeString": "1 min 55 sec", + "fuel": null, + "sulfur": 147 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 32, + "quantityTypeId": "-1321651331", + "time": 83, + "timeString": "1 min 23 sec", + "fuel": null, + "sulfur": 800 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 42, + "quantityTypeId": "605467368", + "time": 109.8, + "timeString": "1 min 49 sec", + "fuel": null, + "sulfur": 525 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 44, + "quantityTypeId": "1712070256", + "time": 115, + "timeString": "1 min 55 sec", + "fuel": null, + "sulfur": 293 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "5.56 Rifle Ammo", + "quantity": 88, + "quantityTypeId": "-1211166256", + "time": 18.2, + "timeString": "18 sec", + "fuel": null, + "sulfur": 293 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 50, + "quantityTypeId": "-1321651331", + "time": 9.76, + "timeString": "9 sec", + "fuel": null, + "sulfur": 1250 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 83, + "quantityTypeId": "605467368", + "time": 17.6, + "timeString": "17 sec", + "fuel": null, + "sulfur": 1038 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 88, + "quantityTypeId": "1712070256", + "time": 18.2, + "timeString": "18 sec", + "fuel": null, + "sulfur": 587 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "-1211166256", + "time": 6.36, + "timeString": "6 sec", + "fuel": null, + "sulfur": 180 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 37, + "quantityTypeId": "-1321651331", + "time": 4.32, + "timeString": "4 sec", + "fuel": null, + "sulfur": 925 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 51, + "quantityTypeId": "605467368", + "time": 6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 638 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 54, + "quantityTypeId": "1712070256", + "time": 6.36, + "timeString": "6 sec", + "fuel": null, + "sulfur": 360 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "5.56 Rifle Ammo", + "quantity": 70, + "quantityTypeId": "-1211166256", + "time": 21.3, + "timeString": "21 sec", + "fuel": null, + "sulfur": 233 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 44, + "quantityTypeId": "-1321651331", + "time": 13.675, + "timeString": "13 sec", + "fuel": null, + "sulfur": 1100 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 67, + "quantityTypeId": "605467368", + "time": 20.775, + "timeString": "20 sec", + "fuel": null, + "sulfur": 838 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 70, + "quantityTypeId": "1712070256", + "time": 21.3, + "timeString": "21 sec", + "fuel": null, + "sulfur": 467 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "Handmade Shell", + "quantity": 25, + "quantityTypeId": "588596902", + "time": 29.2, + "timeString": "29 sec", + "fuel": null, + "sulfur": 125 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Buckshot", + "quantity": 21, + "quantityTypeId": "-1685290200", + "time": 22.5, + "timeString": "22 sec", + "fuel": null, + "sulfur": 210 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Incendiary Shell", + "quantity": 35, + "quantityTypeId": "-1036635990", + "time": 37.7, + "timeString": "37 sec", + "fuel": null, + "sulfur": 700 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Slug", + "quantity": 55, + "quantityTypeId": "-727717969", + "time": 65.7, + "timeString": "1 min 5 sec", + "fuel": null, + "sulfur": 550 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "Pistol Bullet", + "quantity": 78, + "quantityTypeId": "785728077", + "time": 22.75, + "timeString": "22 sec", + "fuel": null, + "sulfur": 195 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "Incendiary Pistol Bullet", + "quantity": 74, + "quantityTypeId": "51984655", + "time": 19.91, + "timeString": "19 sec", + "fuel": null, + "sulfur": 616 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "HV Pistol Ammo", + "quantity": 78, + "quantityTypeId": "-1691396643", + "time": 22.75, + "timeString": "22 sec", + "fuel": null, + "sulfur": 390 + }, + { + "group": "melee", + "which": null, + "toolId": "-1966748496", + "caption": null, + "quantity": 7, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1966748496", + "caption": "Throw", + "quantity": 5, + "quantityTypeId": null, + "time": 351, + "timeString": "5 min 51 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1137865085", + "caption": null, + "quantity": 10, + "quantityTypeId": null, + "time": 259, + "timeString": "4 min 19 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1137865085", + "caption": "Throw", + "quantity": 9, + "quantityTypeId": null, + "time": 657, + "timeString": "10 min 57 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1750, + "quantityTypeId": null, + "time": 212.3, + "timeString": "3 min 32 sec", + "fuel": 1750, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 94, + "quantityTypeId": "-1211166256", + "time": 9.3, + "timeString": "9 sec", + "fuel": null, + "sulfur": 313 + }, + { + "group": "explosive", + "which": null, + "toolId": "1556365900", + "caption": null, + "quantity": 200, + "quantityTypeId": null, + "time": 217.5, + "timeString": "3 min 37 sec", + "fuel": 10000, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "Pistol Bullet", + "quantity": 94, + "quantityTypeId": "785728077", + "time": 21, + "timeString": "21 sec", + "fuel": null, + "sulfur": 235 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "Incendiary Pistol Bullet", + "quantity": 89, + "quantityTypeId": "51984655", + "time": 16.6, + "timeString": "16 sec", + "fuel": null, + "sulfur": 741 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "HV Pistol Ammo", + "quantity": 94, + "quantityTypeId": "-1691396643", + "time": 21, + "timeString": "21 sec", + "fuel": null, + "sulfur": 470 + }, + { + "group": "guns", + "which": null, + "toolId": "1953903201", + "caption": "Nailgun Nails", + "quantity": 389, + "quantityTypeId": "-2097376851", + "time": 129, + "timeString": "2 min 9 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1491189398", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 297.5, + "timeString": "4 min 57 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1491189398", + "caption": "Throw", + "quantity": 3, + "quantityTypeId": null, + "time": 262.5, + "timeString": "4 min 22 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1302129395", + "caption": null, + "quantity": 5, + "quantityTypeId": null, + "time": 442, + "timeString": "7 min 22 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1302129395", + "caption": "Throw", + "quantity": 5, + "quantityTypeId": null, + "time": 657, + "timeString": "10 min 57 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "Handmade Shell", + "quantity": 20, + "quantityTypeId": "588596902", + "time": 85.5, + "timeString": "1 min 25 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Buckshot", + "quantity": 17, + "quantityTypeId": "-1685290200", + "time": 72, + "timeString": "1 min 12 sec", + "fuel": null, + "sulfur": 170 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Incendiary Shell", + "quantity": 28, + "quantityTypeId": "-1036635990", + "time": 121.5, + "timeString": "2 min 1 sec", + "fuel": null, + "sulfur": 560 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Slug", + "quantity": 44, + "quantityTypeId": "-727717969", + "time": 193.5, + "timeString": "3 min 13 sec", + "fuel": null, + "sulfur": 440 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "Pistol Bullet", + "quantity": 64, + "quantityTypeId": "785728077", + "time": 45.45, + "timeString": "45 sec", + "fuel": null, + "sulfur": 160 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "Incendiary Pistol Bullet", + "quantity": 61, + "quantityTypeId": "51984655", + "time": 45, + "timeString": "45 sec", + "fuel": null, + "sulfur": 508 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "HV Pistol Ammo", + "quantity": 64, + "quantityTypeId": "-1691396643", + "time": 45.45, + "timeString": "45 sec", + "fuel": null, + "sulfur": 320 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "Pistol Bullet", + "quantity": 100, + "quantityTypeId": "785728077", + "time": 56.025, + "timeString": "56 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "Incendiary Pistol Bullet", + "quantity": 95, + "quantityTypeId": "51984655", + "time": 51.925, + "timeString": "51 sec", + "fuel": null, + "sulfur": 791 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "HV Pistol Ammo", + "quantity": 100, + "quantityTypeId": "-1691396643", + "time": 56.025, + "timeString": "56 sec", + "fuel": null, + "sulfur": 500 + }, + { + "group": "melee", + "which": null, + "toolId": "963906841", + "caption": null, + "quantity": 20, + "quantityTypeId": null, + "time": 929, + "timeString": "15 min 29 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "963906841", + "caption": "Throw", + "quantity": 28, + "quantityTypeId": null, + "time": 1050, + "timeString": "17 min 30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-262590403", + "caption": null, + "quantity": 4, + "quantityTypeId": null, + "time": 276.75, + "timeString": "4 min 36 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-262590403", + "caption": "Throw", + "quantity": 3, + "quantityTypeId": null, + "time": 525, + "timeString": "8 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1506397857", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 177, + "timeString": "2 min 57 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1506397857", + "caption": "Throw", + "quantity": 3, + "quantityTypeId": null, + "time": 525, + "timeString": "8 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1780802565", + "caption": null, + "quantity": 4, + "quantityTypeId": null, + "time": 276.75, + "timeString": "4 min 36 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1780802565", + "caption": "Throw", + "quantity": 5, + "quantityTypeId": null, + "time": 876, + "timeString": "14 min 36 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "-1878475007", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 12, + "timeString": "12 sec", + "fuel": null, + "sulfur": 1440 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "Handmade Shell", + "quantity": 20, + "quantityTypeId": "588596902", + "time": 34.1, + "timeString": "34 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Buckshot", + "quantity": 17, + "quantityTypeId": "-1685290200", + "time": 26.4, + "timeString": "26 sec", + "fuel": null, + "sulfur": 170 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Incendiary Shell", + "quantity": 28, + "quantityTypeId": "-1036635990", + "time": 47.3, + "timeString": "47 sec", + "fuel": null, + "sulfur": 560 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Slug", + "quantity": 44, + "quantityTypeId": "-727717969", + "time": 78.1, + "timeString": "1 min 18 sec", + "fuel": null, + "sulfur": 440 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "Pistol Bullet", + "quantity": 88, + "quantityTypeId": "785728077", + "time": 35.05, + "timeString": "35 sec", + "fuel": null, + "sulfur": 220 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "Incendiary Pistol Bullet", + "quantity": 83, + "quantityTypeId": "51984655", + "time": 34.3, + "timeString": "34 sec", + "fuel": null, + "sulfur": 691 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "HV Pistol Ammo", + "quantity": 88, + "quantityTypeId": "-1691396643", + "time": 35.05, + "timeString": "35 sec", + "fuel": null, + "sulfur": 440 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "5.56 Rifle Ammo", + "quantity": 88, + "quantityTypeId": "-1211166256", + "time": 36.35, + "timeString": "36 sec", + "fuel": null, + "sulfur": 293 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1321651331", + "caption": "Semi-Automatic Rifle", + "quantity": 50, + "quantityTypeId": null, + "time": 21.25, + "timeString": "21 sec", + "fuel": null, + "sulfur": 1250 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 50, + "quantityTypeId": "-1321651331", + "time": 21.25, + "timeString": "21 sec", + "fuel": null, + "sulfur": 1250 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 83, + "quantityTypeId": "605467368", + "time": 35.475, + "timeString": "35 sec", + "fuel": null, + "sulfur": 1038 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 88, + "quantityTypeId": "1712070256", + "time": 36.35, + "timeString": "36 sec", + "fuel": null, + "sulfur": 587 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "Pistol Bullet", + "quantity": 117, + "quantityTypeId": "785728077", + "time": 23.3, + "timeString": "23 sec", + "fuel": null, + "sulfur": 293 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "Incendiary Pistol Bullet", + "quantity": 111, + "quantityTypeId": "51984655", + "time": 22.7, + "timeString": "22 sec", + "fuel": null, + "sulfur": 925 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "HV Pistol Ammo", + "quantity": 117, + "quantityTypeId": "-1691396643", + "time": 23.3, + "timeString": "23 sec", + "fuel": null, + "sulfur": 585 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "Handmade Shell", + "quantity": 26, + "quantityTypeId": "588596902", + "time": 28.45, + "timeString": "28 sec", + "fuel": null, + "sulfur": 130 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Buckshot", + "quantity": 23, + "quantityTypeId": "-1685290200", + "time": 22.15, + "timeString": "22 sec", + "fuel": null, + "sulfur": 230 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Incendiary Shell", + "quantity": 38, + "quantityTypeId": "-1036635990", + "time": 42.55, + "timeString": "42 sec", + "fuel": null, + "sulfur": 760 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Slug", + "quantity": 59, + "quantityTypeId": "-727717969", + "time": 64.45, + "timeString": "1 min 4 sec", + "fuel": null, + "sulfur": 590 + }, + { + "group": "guns", + "which": null, + "toolId": "-1517740219", + "caption": "Speargun Spear", + "quantity": 140, + "quantityTypeId": "-1800345240", + "time": 500.4, + "timeString": "8 min 20 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1583967946", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 505.1, + "timeString": "8 min 25 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1583967946", + "caption": "Throw", + "quantity": 35, + "quantityTypeId": null, + "time": 1312.5, + "timeString": "21 min 52 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "171931394", + "caption": null, + "quantity": 20, + "quantityTypeId": null, + "time": 439.3, + "timeString": "7 min 19 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "171931394", + "caption": "Throw", + "quantity": 35, + "quantityTypeId": null, + "time": 1312.5, + "timeString": "21 min 52 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1602646136", + "caption": null, + "quantity": 23, + "quantityTypeId": null, + "time": 397, + "timeString": "6 min 37 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1602646136", + "caption": "Throw", + "quantity": 7, + "quantityTypeId": null, + "time": 210, + "timeString": "3 min 30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1469578201", + "caption": null, + "quantity": 7, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1469578201", + "caption": "Throw", + "quantity": 5, + "quantityTypeId": null, + "time": 438, + "timeString": "7 min 18 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1326180354", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 223.75, + "timeString": "3 min 43 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1326180354", + "caption": "Throw", + "quantity": 5, + "quantityTypeId": null, + "time": 657, + "timeString": "10 min 57 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "Pistol Bullet", + "quantity": 94, + "quantityTypeId": "785728077", + "time": 27.57, + "timeString": "27 sec", + "fuel": null, + "sulfur": 235 + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "Incendiary Pistol Bullet", + "quantity": 89, + "quantityTypeId": "51984655", + "time": 26.92, + "timeString": "26 sec", + "fuel": null, + "sulfur": 741 + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "HV Pistol Ammo", + "quantity": 94, + "quantityTypeId": "-1691396643", + "time": 27.57, + "timeString": "27 sec", + "fuel": null, + "sulfur": 470 + }, + { + "group": "melee", + "which": null, + "toolId": "795236088", + "caption": null, + "quantity": 54, + "quantityTypeId": null, + "time": 1873, + "timeString": "31 min 13 sec", + "fuel": 54, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "795236088", + "caption": "Lit", + "quantity": 167, + "quantityTypeId": null, + "time": 1683.1, + "timeString": "28 min 3 sec", + "fuel": 167, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1540934679", + "caption": null, + "quantity": 20, + "quantityTypeId": null, + "time": 544, + "timeString": "9 min 4 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1540934679", + "caption": "Throw", + "quantity": 7, + "quantityTypeId": null, + "time": 262.5, + "timeString": "4 min 22 sec", + "fuel": null, + "sulfur": null + } + ], "Snowmobile": [ { "group": "explosive", @@ -756846,12 +776718,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 240, + "quantity": 120, "quantityTypeId": null, - "time": 1434, - "timeString": "23 min 54 sec", - "fuel": 60720, - "sulfur": 146400 + "time": 714, + "timeString": "11 min 54 sec", + "fuel": 9000, + "sulfur": 36000 }, { "group": "explosive", @@ -756875,7 +776747,7 @@ "time": 10, "timeString": "10 sec", "fuel": null, - "sulfur": 40 + "sulfur": 24 }, { "group": "melee", @@ -757019,7 +776891,7 @@ "time": 12.1314, "timeString": "12 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "explosive", @@ -757079,7 +776951,7 @@ "time": 92.6, "timeString": "1 min 32 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "melee", @@ -757475,7 +777347,7 @@ "time": 19.475, "timeString": "19 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -757559,7 +777431,7 @@ "time": 6.5, "timeString": "6 sec", "fuel": null, - "sulfur": 1060 + "sulfur": 354 }, { "group": "melee", @@ -757631,7 +777503,7 @@ "time": 99, "timeString": "1 min 39 sec", "fuel": null, - "sulfur": 760 + "sulfur": 253 }, { "group": "guns", @@ -757679,7 +777551,7 @@ "time": 16.64, "timeString": "16 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -757727,7 +777599,7 @@ "time": 5.52, "timeString": "5 sec", "fuel": null, - "sulfur": 940 + "sulfur": 313 }, { "group": "guns", @@ -757775,7 +777647,7 @@ "time": 16.475, "timeString": "16 sec", "fuel": null, - "sulfur": 1200 + "sulfur": 400 }, { "group": "guns", @@ -757859,7 +777731,7 @@ "time": 18.86, "timeString": "18 sec", "fuel": null, - "sulfur": 893 + "sulfur": 335 }, { "group": "melee", @@ -757909,6 +777781,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1500, + "quantityTypeId": null, + "time": null, + "timeString": null, + "fuel": 1500, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 80, + "quantityTypeId": "-1211166256", + "time": 7.9, + "timeString": "7 sec", + "fuel": null, + "sulfur": 266 + }, { "group": "explosive", "which": null, @@ -757955,7 +777851,7 @@ "time": 15.7, "timeString": "15 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "guns", @@ -758099,7 +777995,7 @@ "time": 40.5, "timeString": "40 sec", "fuel": null, - "sulfur": 733 + "sulfur": 275 }, { "group": "guns", @@ -758135,7 +778031,7 @@ "time": 47.125, "timeString": "47 sec", "fuel": null, - "sulfur": 1146 + "sulfur": 430 }, { "group": "melee", @@ -758192,8 +778088,8 @@ "caption": null, "quantity": 3, "quantityTypeId": null, - "time": 202, - "timeString": "3 min 22 sec", + "time": 152, + "timeString": "2 min 32 sec", "fuel": null, "sulfur": null }, @@ -758327,7 +778223,7 @@ "time": 30.35, "timeString": "30 sec", "fuel": null, - "sulfur": 1000 + "sulfur": 375 }, { "group": "guns", @@ -758387,7 +778283,7 @@ "time": 29.85, "timeString": "29 sec", "fuel": null, - "sulfur": 1500 + "sulfur": 500 }, { "group": "guns", @@ -758396,8 +778292,8 @@ "caption": "Pistol Bullet", "quantity": 100, "quantityTypeId": "785728077", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, "sulfur": 250 }, @@ -758420,10 +778316,10 @@ "caption": "HV Pistol Ammo", "quantity": 100, "quantityTypeId": "-1691396643", - "time": 25.5, - "timeString": "25 sec", + "time": 21.6, + "timeString": "21 sec", "fuel": null, - "sulfur": 1333 + "sulfur": 500 }, { "group": "guns", @@ -758639,7 +778535,7 @@ "time": 21.88, "timeString": "21 sec", "fuel": null, - "sulfur": 1066 + "sulfur": 400 }, { "group": "melee", @@ -758732,12 +778628,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 400, + "quantity": 200, "quantityTypeId": null, - "time": 2394, - "timeString": "39 min 54 sec", - "fuel": 101200, - "sulfur": 244000 + "time": 1194, + "timeString": "19 min 54 sec", + "fuel": 15000, + "sulfur": 60000 }, { "group": "explosive", @@ -758761,7 +778657,7 @@ "time": 4, "timeString": "4 sec", "fuel": null, - "sulfur": 20 + "sulfur": 12 }, { "group": "melee", @@ -758905,7 +778801,7 @@ "time": 8.6656, "timeString": "8 sec", "fuel": null, - "sulfur": 680 + "sulfur": 227 }, { "group": "explosive", @@ -758965,7 +778861,7 @@ "time": 50.5, "timeString": "50 sec", "fuel": null, - "sulfur": 420 + "sulfur": 140 }, { "group": "melee", @@ -759361,7 +779257,7 @@ "time": 10.1875, "timeString": "10 sec", "fuel": null, - "sulfur": 560 + "sulfur": 210 }, { "group": "guns", @@ -759445,7 +779341,7 @@ "time": 3.5, "timeString": "3 sec", "fuel": null, - "sulfur": 580 + "sulfur": 193 }, { "group": "melee", @@ -759517,7 +779413,7 @@ "time": 53.6, "timeString": "53 sec", "fuel": null, - "sulfur": 420 + "sulfur": 140 }, { "group": "guns", @@ -759565,7 +779461,7 @@ "time": 8.8, "timeString": "8 sec", "fuel": null, - "sulfur": 840 + "sulfur": 280 }, { "group": "guns", @@ -759613,7 +779509,7 @@ "time": 3, "timeString": "3 sec", "fuel": null, - "sulfur": 520 + "sulfur": 173 }, { "group": "guns", @@ -759661,7 +779557,7 @@ "time": 8.85, "timeString": "8 sec", "fuel": null, - "sulfur": 680 + "sulfur": 227 }, { "group": "guns", @@ -759745,7 +779641,7 @@ "time": 10.03, "timeString": "10 sec", "fuel": null, - "sulfur": 507 + "sulfur": 190 }, { "group": "melee", @@ -759795,6 +779691,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 2500, + "quantityTypeId": null, + "time": 304.3, + "timeString": "5 min 4 sec", + "fuel": 2500, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 45, + "quantityTypeId": "-1211166256", + "time": 4.4, + "timeString": "4 sec", + "fuel": null, + "sulfur": 150 + }, { "group": "explosive", "which": null, @@ -759841,7 +779761,7 @@ "time": 8.3, "timeString": "8 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "guns", @@ -759985,7 +779905,7 @@ "time": 22.5, "timeString": "22 sec", "fuel": null, - "sulfur": 413 + "sulfur": 155 }, { "group": "guns", @@ -760021,7 +779941,7 @@ "time": 24.35, "timeString": "24 sec", "fuel": null, - "sulfur": 640 + "sulfur": 240 }, { "group": "melee", @@ -760078,8 +779998,8 @@ "caption": null, "quantity": 5, "quantityTypeId": null, - "time": 338, - "timeString": "5 min 38 sec", + "time": 254, + "timeString": "4 min 14 sec", "fuel": null, "sulfur": null }, @@ -760213,7 +780133,7 @@ "time": 17.15, "timeString": "17 sec", "fuel": null, - "sulfur": 560 + "sulfur": 210 }, { "group": "guns", @@ -760273,7 +780193,7 @@ "time": 15.625, "timeString": "15 sec", "fuel": null, - "sulfur": 840 + "sulfur": 280 }, { "group": "guns", @@ -760282,8 +780202,8 @@ "caption": "Pistol Bullet", "quantity": 56, "quantityTypeId": "785728077", - "time": 13.3, - "timeString": "13 sec", + "time": 9.4, + "timeString": "9 sec", "fuel": null, "sulfur": 140 }, @@ -760294,8 +780214,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 55, "quantityTypeId": "51984655", - "time": 13.2, - "timeString": "13 sec", + "time": 9.3, + "timeString": "9 sec", "fuel": null, "sulfur": 458 }, @@ -760306,10 +780226,10 @@ "caption": "HV Pistol Ammo", "quantity": 56, "quantityTypeId": "-1691396643", - "time": 13.3, - "timeString": "13 sec", + "time": 9.4, + "timeString": "9 sec", "fuel": null, - "sulfur": 746 + "sulfur": 280 }, { "group": "guns", @@ -760525,7 +780445,7 @@ "time": 13.46, "timeString": "13 sec", "fuel": null, - "sulfur": 600 + "sulfur": 225 }, { "group": "melee", @@ -760576,6 +780496,1916 @@ "sulfur": null } ], + "Trike": [ + { + "group": "explosive", + "which": null, + "toolId": "-1843426638", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 0, + "timeString": "0 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "349762871", + "caption": null, + "quantity": 12, + "quantityTypeId": null, + "time": 10, + "timeString": "10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "-742865266", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 6, + "timeString": "6 sec", + "fuel": 60, + "sulfur": 2800 + }, + { + "group": "explosive", + "which": null, + "toolId": "1638322904", + "caption": null, + "quantity": 110, + "quantityTypeId": null, + "time": 654, + "timeString": "10 min 54 sec", + "fuel": 8250, + "sulfur": 33000 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1841918730", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 6, + "timeString": "6 sec", + "fuel": null, + "sulfur": 400 + }, + { + "group": "torpedo", + "which": null, + "toolId": "-1671551935", + "caption": null, + "quantity": 2, + "quantityTypeId": null, + "time": 10, + "timeString": "10 sec", + "fuel": null, + "sulfur": 24 + }, + { + "group": "melee", + "which": null, + "toolId": "-2073432256", + "caption": null, + "quantity": 17, + "quantityTypeId": null, + "time": 256.8, + "timeString": "4 min 16 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-2073432256", + "caption": "Throw", + "quantity": 28, + "quantityTypeId": null, + "time": 1032, + "timeString": "17 min 12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "1248356124", + "caption": null, + "quantity": 1, + "quantityTypeId": null, + "time": 10, + "timeString": "10 sec", + "fuel": 60, + "sulfur": 2200 + }, + { + "group": "melee", + "which": null, + "toolId": "-196667575", + "caption": null, + "quantity": 29, + "quantityTypeId": null, + "time": 395, + "timeString": "6 min 35 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1488979457", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 73.85, + "timeString": "1 min 13 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1488979457", + "caption": "Workbench Refill", + "quantity": 1, + "quantityTypeId": null, + "time": 86.85, + "timeString": "1 min 26 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1536855921", + "caption": null, + "quantity": 22, + "quantityTypeId": null, + "time": 571, + "timeString": "9 min 31 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1536855921", + "caption": "Throw", + "quantity": 14, + "quantityTypeId": null, + "time": 510, + "timeString": "8 min 30 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "5.56 Rifle Ammo", + "quantity": 55, + "quantityTypeId": "-1211166256", + "time": 11.4649, + "timeString": "11 sec", + "fuel": null, + "sulfur": 183 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 35, + "quantityTypeId": "-1321651331", + "time": 8.7989, + "timeString": "8 sec", + "fuel": null, + "sulfur": 875 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 52, + "quantityTypeId": "605467368", + "time": 11.065, + "timeString": "11 sec", + "fuel": null, + "sulfur": 650 + }, + { + "group": "guns", + "which": null, + "toolId": "1545779598", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 55, + "quantityTypeId": "1712070256", + "time": 11.4649, + "timeString": "11 sec", + "fuel": null, + "sulfur": 367 + }, + { + "group": "explosive", + "which": null, + "toolId": "1840822026", + "caption": null, + "quantity": 21, + "quantityTypeId": null, + "time": 28.95, + "timeString": "28 sec", + "fuel": null, + "sulfur": 2520 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "5.56 Rifle Ammo", + "quantity": 35, + "quantityTypeId": "-1211166256", + "time": 84.2, + "timeString": "1 min 24 sec", + "fuel": null, + "sulfur": 117 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 25, + "quantityTypeId": "-1321651331", + "time": null, + "timeString": null, + "fuel": null, + "sulfur": 625 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 33, + "quantityTypeId": "605467368", + "time": 80.8, + "timeString": "1 min 20 sec", + "fuel": null, + "sulfur": 413 + }, + { + "group": "guns", + "which": null, + "toolId": "1588298435", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 35, + "quantityTypeId": "1712070256", + "time": 84.2, + "timeString": "1 min 24 sec", + "fuel": null, + "sulfur": 233 + }, + { + "group": "melee", + "which": null, + "toolId": "1711033574", + "caption": null, + "quantity": 19, + "quantityTypeId": null, + "time": 339.3, + "timeString": "5 min 39 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1711033574", + "caption": "Throw", + "quantity": 23, + "quantityTypeId": null, + "time": 688.5, + "timeString": "11 min 28 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1814288539", + "caption": null, + "quantity": 18, + "quantityTypeId": null, + "time": 318, + "timeString": "5 min 18 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1814288539", + "caption": "Throw", + "quantity": 28, + "quantityTypeId": null, + "time": 1032, + "timeString": "17 min 12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "High Velocity Arrow", + "quantity": 138, + "quantityTypeId": "-1023065463", + "time": 137, + "timeString": "2 min 17 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Wooden Arrow", + "quantity": 110, + "quantityTypeId": "-1234735557", + "time": 109, + "timeString": "1 min 49 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Bone Arrow", + "quantity": 138, + "quantityTypeId": "215754713", + "time": 137, + "timeString": "2 min 17 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "14241751", + "caption": "Hunting Bow", + "quantity": 92, + "quantityTypeId": null, + "time": 91, + "timeString": "1 min 31 sec", + "fuel": 460, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1443579727", + "caption": "Fire Arrow", + "quantity": 92, + "quantityTypeId": "14241751", + "time": 91, + "timeString": "1 min 31 sec", + "fuel": 460, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1104520648", + "caption": null, + "quantity": 19, + "quantityTypeId": null, + "time": 132.6, + "timeString": "2 min 12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1978999529", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 235, + "timeString": "3 min 55 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1978999529", + "caption": "Throw", + "quantity": 4, + "quantityTypeId": null, + "time": 345, + "timeString": "5 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "High Velocity Arrow", + "quantity": 69, + "quantityTypeId": "-1023065463", + "time": 275, + "timeString": "4 min 35 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Wooden Arrow", + "quantity": 55, + "quantityTypeId": "-1234735557", + "time": 219, + "timeString": "3 min 39 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Bone Arrow", + "quantity": 69, + "quantityTypeId": "215754713", + "time": 275, + "timeString": "4 min 35 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "884424049", + "caption": "Fire Arrow", + "quantity": 55, + "quantityTypeId": "14241751", + "time": 219, + "timeString": "3 min 39 sec", + "fuel": 275, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "High Velocity Arrow", + "quantity": 115, + "quantityTypeId": "-1023065463", + "time": 410.4, + "timeString": "6 min 50 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Wooden Arrow", + "quantity": 92, + "quantityTypeId": "-1234735557", + "time": 327.6, + "timeString": "5 min 27 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Bone Arrow", + "quantity": 115, + "quantityTypeId": "215754713", + "time": 410.4, + "timeString": "6 min 50 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1965232394", + "caption": "Fire Arrow", + "quantity": 81, + "quantityTypeId": "14241751", + "time": 288, + "timeString": "4 min 48 sec", + "fuel": 405, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "Handmade Shell", + "quantity": 16, + "quantityTypeId": "588596902", + "time": 42.5, + "timeString": "42 sec", + "fuel": null, + "sulfur": 80 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Buckshot", + "quantity": 14, + "quantityTypeId": "-1685290200", + "time": 36.5, + "timeString": "36 sec", + "fuel": null, + "sulfur": 140 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Incendiary Shell", + "quantity": 22, + "quantityTypeId": "-1036635990", + "time": null, + "timeString": null, + "fuel": null, + "sulfur": 440 + }, + { + "group": "guns", + "which": null, + "toolId": "-765183617", + "caption": "12 Gauge Slug", + "quantity": 35, + "quantityTypeId": "-727717969", + "time": 102, + "timeString": "1 min 42 sec", + "fuel": null, + "sulfur": 350 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "Handmade Shell", + "quantity": 16, + "quantityTypeId": "588596902", + "time": 40.88, + "timeString": "40 sec", + "fuel": null, + "sulfur": 80 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Buckshot", + "quantity": 14, + "quantityTypeId": "-1685290200", + "time": 35.52, + "timeString": "35 sec", + "fuel": null, + "sulfur": 140 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Incendiary Shell", + "quantity": 22, + "quantityTypeId": "-1036635990", + "time": 56.96, + "timeString": "56 sec", + "fuel": null, + "sulfur": 440 + }, + { + "group": "guns", + "which": null, + "toolId": "-75944661", + "caption": "12 Gauge Slug", + "quantity": 35, + "quantityTypeId": "-727717969", + "time": 91.8, + "timeString": "1 min 31 sec", + "fuel": null, + "sulfur": 350 + }, + { + "group": "explosive", + "which": null, + "toolId": "143803535", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 9.7, + "timeString": "9 sec", + "fuel": null, + "sulfur": 360 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1215753368", + "caption": null, + "quantity": 1618, + "quantityTypeId": null, + "time": 216.1, + "timeString": "3 min 36 sec", + "fuel": 1618, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "Pistol Bullet", + "quantity": 69, + "quantityTypeId": "785728077", + "time": 16.0125, + "timeString": "16 sec", + "fuel": null, + "sulfur": 173 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "Incendiary Pistol Bullet", + "quantity": 65, + "quantityTypeId": "51984655", + "time": 15.5625, + "timeString": "15 sec", + "fuel": null, + "sulfur": 541 + }, + { + "group": "guns", + "which": null, + "toolId": "1914691295", + "caption": "HV Pistol Ammo", + "quantity": 69, + "quantityTypeId": "-1691396643", + "time": 16.0125, + "timeString": "16 sec", + "fuel": null, + "sulfur": 345 + }, + { + "group": "guns", + "which": null, + "toolId": "-1123473824", + "caption": "40mm Shotgun Round", + "quantity": 11, + "quantityTypeId": "1055319033", + "time": 9.6, + "timeString": "9 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1252059217", + "caption": null, + "quantity": 4, + "quantityTypeId": null, + "time": 228, + "timeString": "3 min 48 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1252059217", + "caption": "Throw", + "quantity": 5, + "quantityTypeId": null, + "time": 688.5, + "timeString": "11 min 28 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "5.56 Rifle Ammo", + "quantity": 48, + "quantityTypeId": "-1211166256", + "time": 5.875, + "timeString": "5 sec", + "fuel": null, + "sulfur": 160 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 32, + "quantityTypeId": "-1321651331", + "time": 3.875, + "timeString": "3 sec", + "fuel": null, + "sulfur": 800 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 46, + "quantityTypeId": "605467368", + "time": 5.625, + "timeString": "5 sec", + "fuel": null, + "sulfur": 575 + }, + { + "group": "guns", + "which": null, + "toolId": "-1214542497", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 48, + "quantityTypeId": "1712070256", + "time": 5.875, + "timeString": "5 sec", + "fuel": null, + "sulfur": 320 + }, + { + "group": "melee", + "which": null, + "toolId": "2040726127", + "caption": null, + "quantity": 16, + "quantityTypeId": null, + "time": 152.9, + "timeString": "2 min 32 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "2040726127", + "caption": "Throw", + "quantity": 6, + "quantityTypeId": null, + "time": 207, + "timeString": "3 min 27 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "5.56 Rifle Ammo", + "quantity": 35, + "quantityTypeId": "-1211166256", + "time": 90.8, + "timeString": "1 min 30 sec", + "fuel": null, + "sulfur": 117 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 25, + "quantityTypeId": "-1321651331", + "time": 64, + "timeString": "1 min 4 sec", + "fuel": null, + "sulfur": 625 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 33, + "quantityTypeId": "605467368", + "time": 85.6, + "timeString": "1 min 25 sec", + "fuel": null, + "sulfur": 413 + }, + { + "group": "guns", + "which": null, + "toolId": "-778367295", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 35, + "quantityTypeId": "1712070256", + "time": 90.8, + "timeString": "1 min 30 sec", + "fuel": null, + "sulfur": 233 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "5.56 Rifle Ammo", + "quantity": 69, + "quantityTypeId": "-1211166256", + "time": 15.92, + "timeString": "15 sec", + "fuel": null, + "sulfur": 230 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "-1321651331", + "time": 8.56, + "timeString": "8 sec", + "fuel": null, + "sulfur": 1000 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 65, + "quantityTypeId": "605467368", + "time": 15.44, + "timeString": "15 sec", + "fuel": null, + "sulfur": 813 + }, + { + "group": "guns", + "which": null, + "toolId": "-1812555177", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 69, + "quantityTypeId": "1712070256", + "time": 15.92, + "timeString": "15 sec", + "fuel": null, + "sulfur": 460 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "5.56 Rifle Ammo", + "quantity": 43, + "quantityTypeId": "-1211166256", + "time": 5.04, + "timeString": "5 sec", + "fuel": null, + "sulfur": 143 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 29, + "quantityTypeId": "-1321651331", + "time": 3.36, + "timeString": "3 sec", + "fuel": null, + "sulfur": 725 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "605467368", + "time": 4.68, + "timeString": "4 sec", + "fuel": null, + "sulfur": 500 + }, + { + "group": "guns", + "which": null, + "toolId": "-2069578888", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 43, + "quantityTypeId": "1712070256", + "time": 5.04, + "timeString": "5 sec", + "fuel": null, + "sulfur": 287 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "5.56 Rifle Ammo", + "quantity": 55, + "quantityTypeId": "-1211166256", + "time": 15.6, + "timeString": "15 sec", + "fuel": null, + "sulfur": 183 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 35, + "quantityTypeId": "-1321651331", + "time": 9.025, + "timeString": "9 sec", + "fuel": null, + "sulfur": 875 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 52, + "quantityTypeId": "605467368", + "time": 15.075, + "timeString": "15 sec", + "fuel": null, + "sulfur": 650 + }, + { + "group": "guns", + "which": null, + "toolId": "28201841", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 55, + "quantityTypeId": "1712070256", + "time": 15.6, + "timeString": "15 sec", + "fuel": null, + "sulfur": 367 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "Handmade Shell", + "quantity": 20, + "quantityTypeId": "588596902", + "time": 22.2, + "timeString": "22 sec", + "fuel": null, + "sulfur": 100 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Buckshot", + "quantity": 17, + "quantityTypeId": "-1685290200", + "time": 15.8, + "timeString": "15 sec", + "fuel": null, + "sulfur": 170 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Incendiary Shell", + "quantity": 28, + "quantityTypeId": "-1036635990", + "time": 30.1, + "timeString": "30 sec", + "fuel": null, + "sulfur": 560 + }, + { + "group": "guns", + "which": null, + "toolId": "678698219", + "caption": "12 Gauge Slug", + "quantity": 43, + "quantityTypeId": "-727717969", + "time": 51.1, + "timeString": "51 sec", + "fuel": null, + "sulfur": 430 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "Pistol Bullet", + "quantity": 62, + "quantityTypeId": "785728077", + "time": 18.11, + "timeString": "18 sec", + "fuel": null, + "sulfur": 155 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "Incendiary Pistol Bullet", + "quantity": 58, + "quantityTypeId": "51984655", + "time": 15.27, + "timeString": "15 sec", + "fuel": null, + "sulfur": 483 + }, + { + "group": "guns", + "which": null, + "toolId": "-852563019", + "caption": "HV Pistol Ammo", + "quantity": 62, + "quantityTypeId": "-1691396643", + "time": 18.11, + "timeString": "18 sec", + "fuel": null, + "sulfur": 310 + }, + { + "group": "melee", + "which": null, + "toolId": "-1966748496", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 189, + "timeString": "3 min 9 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1966748496", + "caption": "Throw", + "quantity": 4, + "quantityTypeId": null, + "time": 276, + "timeString": "4 min 36 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1137865085", + "caption": null, + "quantity": 8, + "quantityTypeId": null, + "time": 204, + "timeString": "3 min 24 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1137865085", + "caption": "Throw", + "quantity": 7, + "quantityTypeId": null, + "time": 516, + "timeString": "8 min 36 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 1375, + "quantityTypeId": null, + "time": 168, + "timeString": "2 min 48 sec", + "fuel": 1375, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 74, + "quantityTypeId": "-1211166256", + "time": 7.3, + "timeString": "7 sec", + "fuel": null, + "sulfur": 246 + }, + { + "group": "explosive", + "which": null, + "toolId": "1556365900", + "caption": null, + "quantity": 158, + "quantityTypeId": null, + "time": 175.5, + "timeString": "2 min 55 sec", + "fuel": 7900, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "Pistol Bullet", + "quantity": 74, + "quantityTypeId": "785728077", + "time": 15.1, + "timeString": "15 sec", + "fuel": null, + "sulfur": 185 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "Incendiary Pistol Bullet", + "quantity": 70, + "quantityTypeId": "51984655", + "time": 14.7, + "timeString": "14 sec", + "fuel": null, + "sulfur": 583 + }, + { + "group": "guns", + "which": null, + "toolId": "1318558775", + "caption": "HV Pistol Ammo", + "quantity": 74, + "quantityTypeId": "-1691396643", + "time": 15.1, + "timeString": "15 sec", + "fuel": null, + "sulfur": 370 + }, + { + "group": "guns", + "which": null, + "toolId": "1953903201", + "caption": "Nailgun Nails", + "quantity": 306, + "quantityTypeId": "-2097376851", + "time": 101.8, + "timeString": "1 min 41 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1491189398", + "caption": null, + "quantity": 5, + "quantityTypeId": null, + "time": 234, + "timeString": "3 min 54 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1491189398", + "caption": "Throw", + "quantity": 2, + "quantityTypeId": null, + "time": 207, + "timeString": "3 min 27 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1302129395", + "caption": null, + "quantity": 4, + "quantityTypeId": null, + "time": 348, + "timeString": "5 min 48 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1302129395", + "caption": "Throw", + "quantity": 4, + "quantityTypeId": null, + "time": 516, + "timeString": "8 min 36 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "Handmade Shell", + "quantity": 16, + "quantityTypeId": "588596902", + "time": 67.5, + "timeString": "1 min 7 sec", + "fuel": null, + "sulfur": 80 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Buckshot", + "quantity": 14, + "quantityTypeId": "-1685290200", + "time": 58.5, + "timeString": "58 sec", + "fuel": null, + "sulfur": 140 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Incendiary Shell", + "quantity": 22, + "quantityTypeId": "-1036635990", + "time": 94.5, + "timeString": "1 min 34 sec", + "fuel": null, + "sulfur": 440 + }, + { + "group": "guns", + "which": null, + "toolId": "-1367281941", + "caption": "12 Gauge Slug", + "quantity": 35, + "quantityTypeId": "-727717969", + "time": 153, + "timeString": "2 min 33 sec", + "fuel": null, + "sulfur": 350 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "Pistol Bullet", + "quantity": 50, + "quantityTypeId": "785728077", + "time": 36.15, + "timeString": "36 sec", + "fuel": null, + "sulfur": 125 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "Incendiary Pistol Bullet", + "quantity": 48, + "quantityTypeId": "51984655", + "time": 32.25, + "timeString": "32 sec", + "fuel": null, + "sulfur": 400 + }, + { + "group": "guns", + "which": null, + "toolId": "1373971859", + "caption": "HV Pistol Ammo", + "quantity": 50, + "quantityTypeId": "-1691396643", + "time": 36.15, + "timeString": "36 sec", + "fuel": null, + "sulfur": 250 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "Pistol Bullet", + "quantity": 79, + "quantityTypeId": "785728077", + "time": 42.675, + "timeString": "42 sec", + "fuel": null, + "sulfur": 198 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "Incendiary Pistol Bullet", + "quantity": 75, + "quantityTypeId": "51984655", + "time": 41.975, + "timeString": "41 sec", + "fuel": null, + "sulfur": 625 + }, + { + "group": "guns", + "which": null, + "toolId": "649912614", + "caption": "HV Pistol Ammo", + "quantity": 79, + "quantityTypeId": "-1691396643", + "time": 42.675, + "timeString": "42 sec", + "fuel": null, + "sulfur": 395 + }, + { + "group": "melee", + "which": null, + "toolId": "963906841", + "caption": null, + "quantity": 16, + "quantityTypeId": null, + "time": 730, + "timeString": "12 min 10 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "963906841", + "caption": "Throw", + "quantity": 22, + "quantityTypeId": null, + "time": 825, + "timeString": "13 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-262590403", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 217, + "timeString": "3 min 37 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-262590403", + "caption": "Throw", + "quantity": 3, + "quantityTypeId": null, + "time": 412.5, + "timeString": "6 min 52 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1506397857", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 140, + "timeString": "2 min 20 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1506397857", + "caption": "Throw", + "quantity": 3, + "quantityTypeId": null, + "time": 412.5, + "timeString": "6 min 52 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1780802565", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 217, + "timeString": "3 min 37 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1780802565", + "caption": "Throw", + "quantity": 4, + "quantityTypeId": null, + "time": 688.5, + "timeString": "11 min 28 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "explosive", + "which": null, + "toolId": "-1878475007", + "caption": null, + "quantity": 3, + "quantityTypeId": null, + "time": 12, + "timeString": "12 sec", + "fuel": null, + "sulfur": 1440 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "Handmade Shell", + "quantity": 16, + "quantityTypeId": "588596902", + "time": 25.3, + "timeString": "25 sec", + "fuel": null, + "sulfur": 80 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Buckshot", + "quantity": 14, + "quantityTypeId": "-1685290200", + "time": 23.1, + "timeString": "23 sec", + "fuel": null, + "sulfur": 140 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Incendiary Shell", + "quantity": 22, + "quantityTypeId": "-1036635990", + "time": 36.3, + "timeString": "36 sec", + "fuel": null, + "sulfur": 440 + }, + { + "group": "guns", + "which": null, + "toolId": "795371088", + "caption": "12 Gauge Slug", + "quantity": 35, + "quantityTypeId": "-727717969", + "time": 59.4, + "timeString": "59 sec", + "fuel": null, + "sulfur": 350 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "Pistol Bullet", + "quantity": 69, + "quantityTypeId": "785728077", + "time": 26.7, + "timeString": "26 sec", + "fuel": null, + "sulfur": 173 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "Incendiary Pistol Bullet", + "quantity": 65, + "quantityTypeId": "51984655", + "time": 26.1, + "timeString": "26 sec", + "fuel": null, + "sulfur": 541 + }, + { + "group": "guns", + "which": null, + "toolId": "818877484", + "caption": "HV Pistol Ammo", + "quantity": 69, + "quantityTypeId": "-1691396643", + "time": 26.7, + "timeString": "26 sec", + "fuel": null, + "sulfur": 345 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "5.56 Rifle Ammo", + "quantity": 69, + "quantityTypeId": "-1211166256", + "time": 28.8, + "timeString": "28 sec", + "fuel": null, + "sulfur": 230 + }, + { + "group": "explosive", + "which": null, + "toolId": "-1321651331", + "caption": "Semi-Automatic Rifle", + "quantity": 40, + "quantityTypeId": null, + "time": 15.275, + "timeString": "15 sec", + "fuel": null, + "sulfur": 1000 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Explosive 5.56 Rifle Ammo", + "quantity": 40, + "quantityTypeId": "-1321651331", + "time": 15.275, + "timeString": "15 sec", + "fuel": null, + "sulfur": 1000 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "Incendiary 5.56 Rifle Ammo", + "quantity": 65, + "quantityTypeId": "605467368", + "time": 28.1, + "timeString": "28 sec", + "fuel": null, + "sulfur": 813 + }, + { + "group": "guns", + "which": null, + "toolId": "-904863145", + "caption": "HV 5.56 Rifle Ammo", + "quantity": 69, + "quantityTypeId": "1712070256", + "time": 28.8, + "timeString": "28 sec", + "fuel": null, + "sulfur": 460 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "Pistol Bullet", + "quantity": 92, + "quantityTypeId": "785728077", + "time": 20.8, + "timeString": "20 sec", + "fuel": null, + "sulfur": 230 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "Incendiary Pistol Bullet", + "quantity": 87, + "quantityTypeId": "51984655", + "time": 16.4, + "timeString": "16 sec", + "fuel": null, + "sulfur": 725 + }, + { + "group": "guns", + "which": null, + "toolId": "1796682209", + "caption": "HV Pistol Ammo", + "quantity": 92, + "quantityTypeId": "-1691396643", + "time": 20.8, + "timeString": "20 sec", + "fuel": null, + "sulfur": 460 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "Handmade Shell", + "quantity": 21, + "quantityTypeId": "588596902", + "time": 21.65, + "timeString": "21 sec", + "fuel": null, + "sulfur": 105 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Buckshot", + "quantity": 18, + "quantityTypeId": "-1685290200", + "time": 15.35, + "timeString": "15 sec", + "fuel": null, + "sulfur": 180 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Incendiary Shell", + "quantity": 30, + "quantityTypeId": "-1036635990", + "time": 29.45, + "timeString": "29 sec", + "fuel": null, + "sulfur": 600 + }, + { + "group": "guns", + "which": null, + "toolId": "-41440462", + "caption": "12 Gauge Slug", + "quantity": 46, + "quantityTypeId": "-727717969", + "time": 50.1, + "timeString": "50 sec", + "fuel": null, + "sulfur": 460 + }, + { + "group": "guns", + "which": null, + "toolId": "-1517740219", + "caption": "Speargun Spear", + "quantity": 110, + "quantityTypeId": "-1800345240", + "time": 392.4, + "timeString": "6 min 32 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1583967946", + "caption": null, + "quantity": 17, + "quantityTypeId": null, + "time": 397.6, + "timeString": "6 min 37 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1583967946", + "caption": "Throw", + "quantity": 28, + "quantityTypeId": null, + "time": 1032, + "timeString": "17 min 12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "171931394", + "caption": null, + "quantity": 16, + "quantityTypeId": null, + "time": 345.3, + "timeString": "5 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "171931394", + "caption": "Throw", + "quantity": 28, + "quantityTypeId": null, + "time": 1032, + "timeString": "17 min 12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1602646136", + "caption": null, + "quantity": 18, + "quantityTypeId": null, + "time": 312.5, + "timeString": "5 min 12 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1602646136", + "caption": "Throw", + "quantity": 6, + "quantityTypeId": null, + "time": 165, + "timeString": "2 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "-1469578201", + "caption": null, + "quantity": 6, + "quantityTypeId": null, + "time": 189, + "timeString": "3 min 9 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "-1469578201", + "caption": "Throw", + "quantity": 4, + "quantityTypeId": null, + "time": 345, + "timeString": "5 min 45 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1326180354", + "caption": null, + "quantity": 5, + "quantityTypeId": null, + "time": 176.5, + "timeString": "2 min 56 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1326180354", + "caption": "Throw", + "quantity": 4, + "quantityTypeId": null, + "time": 516, + "timeString": "8 min 36 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "Pistol Bullet", + "quantity": 74, + "quantityTypeId": "785728077", + "time": 21.1, + "timeString": "21 sec", + "fuel": null, + "sulfur": 185 + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "Incendiary Pistol Bullet", + "quantity": 70, + "quantityTypeId": "51984655", + "time": 20.58, + "timeString": "20 sec", + "fuel": null, + "sulfur": 583 + }, + { + "group": "guns", + "which": null, + "toolId": "-1758372725", + "caption": "HV Pistol Ammo", + "quantity": 74, + "quantityTypeId": "-1691396643", + "time": 21.1, + "timeString": "21 sec", + "fuel": null, + "sulfur": 370 + }, + { + "group": "melee", + "which": null, + "toolId": "795236088", + "caption": null, + "quantity": 43, + "quantityTypeId": null, + "time": 1472, + "timeString": "24 min 32 sec", + "fuel": 43, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "795236088", + "caption": "Lit", + "quantity": 131, + "quantityTypeId": null, + "time": 1322.1, + "timeString": "22 min 2 sec", + "fuel": 131, + "sulfur": null + }, + { + "group": "melee", + "which": null, + "toolId": "1540934679", + "caption": null, + "quantity": 16, + "quantityTypeId": null, + "time": 427.5, + "timeString": "7 min 7 sec", + "fuel": null, + "sulfur": null + }, + { + "group": "throw", + "which": null, + "toolId": "1540934679", + "caption": "Throw", + "quantity": 6, + "quantityTypeId": null, + "time": 207, + "timeString": "3 min 27 sec", + "fuel": null, + "sulfur": null + } + ], "Tugboat": [ { "group": "explosive", @@ -760618,12 +782448,12 @@ "which": null, "toolId": "1638322904", "caption": null, - "quantity": 2400, + "quantity": 1200, "quantityTypeId": null, - "time": 14394, - "timeString": "3 hours 59 min 54 sec", - "fuel": 607200, - "sulfur": 1464000 + "time": 7194, + "timeString": "1 hour 59 min 54 sec", + "fuel": 90000, + "sulfur": 360000 }, { "group": "explosive", @@ -760647,7 +782477,7 @@ "time": 70, "timeString": "1 min 10 sec", "fuel": null, - "sulfur": 240 + "sulfur": 144 }, { "group": "melee", @@ -760791,7 +782621,7 @@ "time": 1648.74, "timeString": "27 min 28 sec", "fuel": null, - "sulfur": 120000 + "sulfur": 40020 }, { "group": "explosive", @@ -760851,7 +782681,7 @@ "time": 9465.4, "timeString": "2 hours 37 min 45 sec", "fuel": null, - "sulfur": 75000 + "sulfur": 25013 }, { "group": "melee", @@ -761139,7 +782969,7 @@ "time": 2003.2375, "timeString": "33 min 23 sec", "fuel": null, - "sulfur": 99975 + "sulfur": 37500 }, { "group": "guns", @@ -761223,7 +783053,7 @@ "time": null, "timeString": null, "fuel": null, - "sulfur": 104360 + "sulfur": 34804 }, { "group": "melee", @@ -761295,7 +783125,7 @@ "time": 10047, "timeString": "2 hours 47 min 27 sec", "fuel": null, - "sulfur": 75000 + "sulfur": 25013 }, { "group": "guns", @@ -761343,7 +783173,7 @@ "time": 1866, "timeString": "31 min 6 sec", "fuel": null, - "sulfur": 150000 + "sulfur": 50025 }, { "group": "guns", @@ -761391,7 +783221,7 @@ "time": 893.28, "timeString": "14 min 53 sec", "fuel": null, - "sulfur": 92320 + "sulfur": 30789 }, { "group": "guns", @@ -761439,7 +783269,7 @@ "time": 1969.25, "timeString": "32 min 49 sec", "fuel": null, - "sulfur": 120000 + "sulfur": 40020 }, { "group": "guns", @@ -761523,7 +783353,7 @@ "time": 1994.46, "timeString": "33 min 14 sec", "fuel": null, - "sulfur": 88871 + "sulfur": 33335 }, { "group": "melee", @@ -761573,6 +783403,30 @@ "fuel": null, "sulfur": null }, + { + "group": "explosive", + "which": null, + "toolId": "703057617", + "caption": null, + "quantity": 15000, + "quantityTypeId": null, + "time": 1836.5, + "timeString": "30 min 36 sec", + "fuel": 15000, + "sulfur": null + }, + { + "group": "guns", + "which": null, + "toolId": "935606207", + "caption": "5.56 Rifle Ammo", + "quantity": 8000, + "quantityTypeId": "-1211166256", + "time": 888.3, + "timeString": "14 min 48 sec", + "fuel": null, + "sulfur": 26640 + }, { "group": "explosive", "which": null, @@ -761619,7 +783473,7 @@ "time": 1837.3, "timeString": "30 min 37 sec", "fuel": null, - "sulfur": 106640 + "sulfur": 40000 }, { "group": "melee", @@ -761739,7 +783593,7 @@ "time": 4090.5, "timeString": "1 hour 8 min 10 sec", "fuel": null, - "sulfur": 72715 + "sulfur": 27275 }, { "group": "guns", @@ -761775,7 +783629,7 @@ "time": 4953.9, "timeString": "1 hour 22 min 33 sec", "fuel": null, - "sulfur": 114265 + "sulfur": 42860 }, { "group": "melee", @@ -761830,10 +783684,10 @@ "which": null, "toolId": "-1506397857", "caption": null, - "quantity": 137, + "quantity": 132, "quantityTypeId": null, - "time": 10136, - "timeString": "2 hours 48 min 56 sec", + "time": 7631, + "timeString": "2 hours 7 min 11 sec", "fuel": null, "sulfur": null }, @@ -761967,7 +783821,7 @@ "time": 3184.6, "timeString": "53 min 4 sec", "fuel": null, - "sulfur": 99975 + "sulfur": 37500 }, { "group": "guns", @@ -762027,7 +783881,7 @@ "time": 3289.625, "timeString": "54 min 49 sec", "fuel": null, - "sulfur": 150000 + "sulfur": 50025 }, { "group": "guns", @@ -762036,8 +783890,8 @@ "caption": "Pistol Bullet", "quantity": 10000, "quantityTypeId": "785728077", - "time": 2622.3, - "timeString": "43 min 42 sec", + "time": 2298.6, + "timeString": "38 min 18 sec", "fuel": null, "sulfur": 25000 }, @@ -762048,8 +783902,8 @@ "caption": "Incendiary Pistol Bullet", "quantity": 6250, "quantityTypeId": "51984655", - "time": 1638.9, - "timeString": "27 min 18 sec", + "time": 1436.1, + "timeString": "23 min 56 sec", "fuel": null, "sulfur": 52063 }, @@ -762060,10 +783914,10 @@ "caption": "HV Pistol Ammo", "quantity": 10000, "quantityTypeId": "-1691396643", - "time": 2622.3, - "timeString": "43 min 42 sec", + "time": 2298.6, + "timeString": "38 min 18 sec", "fuel": null, - "sulfur": 133300 + "sulfur": 50000 }, { "group": "guns", @@ -762255,7 +784109,7 @@ "time": 2584, "timeString": "43 min 4 sec", "fuel": null, - "sulfur": 106640 + "sulfur": 40000 }, { "group": "melee", diff --git a/src/staticFiles/rustlabsOther.json b/src/staticFiles/rustlabsOther.json index d82a97cc1..f5ab119f6 100644 --- a/src/staticFiles/rustlabsOther.json +++ b/src/staticFiles/rustlabsOther.json @@ -5,6 +5,7 @@ "Arctic Scientist": "arctic-scientist", "Attack Helicopter": "attack-helicopter", "Bandit Camp Guard": "bandit-camp-guard", + "Bike": "bike", "Bradley APC": "bradley-apc", "Cargo Ship Scientist": "cargo-ship-scientist", "CZ-721": "cz-721", @@ -15,6 +16,8 @@ "Fisherman Tackle Box": "fisherman-tackle-box", "Giant Excavator": "giant-excavator", "Heavy Scientist": "heavy-scientist", + "Heavy Scientist With Flamethrower": "heavy-scientist-with-flamethrower", + "Heavy Scientist With Minigun": "heavy-scientist-with-minigun", "Hot Air Balloon": "hot-air-balloon", "Hunter": "hunter", "Lumberjack": "lumberjack", @@ -27,6 +30,7 @@ "MLRS": "mlrs", "Monument SAM Site": "monument-sam-site", "Motor Rowboat": "motor-rowboat", + "Motorbike": "motorbike", "Newman": "newman", "NVG Scientist": "nvg-scientist", "Oil Rig Scientist": "oil-rig-scientist", @@ -37,13 +41,16 @@ "Recycler": "recycler", "RHIB": "rhib", "Roaming Scientist": "roaming-scientist", + "Safe Zone Recycler": "safe-zone-recycler", "Scrap Transport Helicopter": "scrap-transport-helicopter", "Scrapped Pickup Truck": "scrapped-pickup-truck", "Shredder": "shredder", + "Sidecar Motorbike": "sidecar-motorbike", "Snowmobile": "snowmobile", "Solo Submarine": "solo-submarine", "Stablehand": "stablehand", "Treasure Box": "treasure-box", + "Trike": "trike", "Tugboat": "tugboat", "Tunnel Dweller": "tunnel-dweller", "Underwater Dweller": "underwater-dweller", diff --git a/src/staticFiles/rustlabsRecycleData.json b/src/staticFiles/rustlabsRecycleData.json index 7300f3f37..3d857cb70 100644 --- a/src/staticFiles/rustlabsRecycleData.json +++ b/src/staticFiles/rustlabsRecycleData.json @@ -1,6665 +1,20978 @@ { - "3222790": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 5 - } - ], - "3380160": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "14241751": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 5 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 3 - }, - { - "id": "-858312878", - "probability": 0.5, - "quantity": 1 - } - ], - "15388698": [ - { - "id": "-2099697608", - "probability": 1, - "quantity": 50 - } - ], - "20489901": [ - { - "id": "69511070", - "probability": 1, - "quantity": 15 - } - ], - "21402876": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 3 - } - ], - "23352662": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "23391694": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "28201841": [ - { - "id": "-1021495308", - "probability": 1, - "quantity": 2 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 25 - }, - { - "id": "176787552", - "probability": 0.5, - "quantity": 1 - } - ], - "39600618": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "42535890": [ - { - "id": "69511070", - "probability": 1, - "quantity": 150 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "51984655": [ - { - "id": "69511070", - "probability": 1, - "quantity": 2 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 2 - }, - { - "id": "-1581843485", - "probability": 1, - "quantity": 1 - } - ], - "60528587": [ - { - "id": "1199391518", - "probability": 1, - "quantity": 2 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - } - ], - "73681876": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 20 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "86840834": [ - { - "id": "2019042823", - "probability": 1, - "quantity": 3 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 4 - } - ], - "95950017": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 5 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "98508942": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 88 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 15 - } - ], - "99588025": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 750 - } - ], - "106959911": [ - { - "id": "-1709878924", - "probability": 1, - "quantity": 2 - }, - { - "id": "-1018587433", - "probability": 1, - "quantity": 5 - }, - { - "id": "1719978075", - "probability": 1, - "quantity": 10 - } - ], - "121049755": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 75 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "140006625": [ - { - "id": "69511070", - "probability": 1, - "quantity": 75 - }, - { - "id": "634478325", - "probability": 0.5, - "quantity": 1 - } - ], - "143803535": [ - { - "id": "-265876753", - "probability": 1, - "quantity": 15 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 13 - } - ], - "170758448": [ - { - "id": "69511070", - "probability": 1, - "quantity": 75 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 3 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "171931394": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "-2099697608", - "probability": 1, - "quantity": 50 - } - ], - "174866732": [ - { - "id": "317398316", - "probability": 1, - "quantity": 40 - } - ], - "176787552": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 25 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 2 - } - ], - "177226991": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "190184021": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 25 - } - ], - "196700171": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 5 - } - ], - "198438816": [ - { - "id": "317398316", - "probability": 1, - "quantity": 10 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 2 - } - ], - "200773292": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "204391461": [ - { - "id": "204391461", - "probability": 1, - "quantity": 1 - }, - { - "id": "-321733511", - "probability": 1, - "quantity": 2 - }, - { - "id": "-2099697608", - "probability": 1, - "quantity": 25 - } - ], - "215754713": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 5 - }, - { - "id": "1719978075", - "probability": 1, - "quantity": 2 - } - ], - "223891266": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 13 - } - ], - "237239288": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 20 - }, - { - "id": "1234880403", - "probability": 0.5, - "quantity": 1 - } - ], - "240752557": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 88 - } - ], - "254522515": [ - { - "id": "1079279582", - "probability": 1, - "quantity": 1 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 5 - } - ], - "261913429": [ - { - "id": "69511070", - "probability": 1, - "quantity": 10 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 8 - } - ], - "268565518": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 63 - } - ], - "271048478": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - }, - { - "id": "2048317869", - "probability": 0.5, - "quantity": 1 - } - ], - "273172220": [ - { - "id": "273172220", - "probability": 1, - "quantity": 1 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "282103175": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - } - ], - "286648290": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "296519935": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "304481038": [ - { - "id": "-265876753", - "probability": 1, - "quantity": 5 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 5 - } - ], - "343045591": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - }, - { - "id": "73681876", - "probability": 1, - "quantity": 2 - } - ], - "349762871": [ - { - "id": "-265876753", - "probability": 1, - "quantity": 8 - }, - { - "id": "95950017", - "probability": 0.25, - "quantity": 1 - }, - { - "id": "-592016202", - "probability": 0.25, - "quantity": 1 - } - ], - "352321488": [ - { - "id": "69511070", - "probability": 1, - "quantity": 15 - } - ], - "352499047": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 250 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 125 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 1 - }, - { - "id": "1414245522", - "probability": 1, - "quantity": 1 - } - ], - "359723196": [ - { - "id": "317398316", - "probability": 1, - "quantity": 5 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 1 - } - ], - "363163265": [ - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "418081930": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 150 - }, - { - "id": "1414245522", - "probability": 0.5, - "quantity": 1 - } - ], - "442289265": [ - { - "id": "317398316", - "probability": 1, - "quantity": 6 - }, - { - "id": "73681876", - "probability": 0.5, - "quantity": 1 - } - ], - "442886268": [ - { - "id": "317398316", - "probability": 1, - "quantity": 20 - }, - { - "id": "95950017", - "probability": 1, - "quantity": 2 - } - ], - "443432036": [ - { - "id": "443432036", - "probability": 1, - "quantity": 1 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 75 - } - ], - "446206234": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 20 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 5 - } - ], - "476066818": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "479143914": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 10 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 13 - } - ], - "486661382": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 200 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 200 - } - ], - "492357192": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "528668503": [ - { - "id": "69511070", - "probability": 1, - "quantity": 100 - }, - { - "id": "-1673693549", - "probability": 1, - "quantity": 1 - }, - { - "id": "479143914", - "probability": 0.5, - "quantity": 1 - } - ], - "553270375": [ - { - "id": "317398316", - "probability": 1, - "quantity": 5 - }, - { - "id": "73681876", - "probability": 1, - "quantity": 1 - } - ], - "553887414": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "996293980", - "probability": 0.5, - "quantity": 1 - } - ], - "559147458": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 3 - } - ], - "567235583": [ - { - "id": "317398316", - "probability": 1, - "quantity": 25 - } - ], - "567871954": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 25 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "573676040": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 400 - } - ], - "573926264": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 15 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 2 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 75 - } - ], - "576509618": [ - { - "id": "69511070", - "probability": 1, - "quantity": 60 - } - ], - "588596902": [ - { - "id": "-2099697608", - "probability": 1, - "quantity": 2 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 2 - } - ], - "593465182": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "596469572": [ - { - "id": "317398316", - "probability": 1, - "quantity": 3 - }, - { - "id": "73681876", - "probability": 0.5, - "quantity": 1 - } - ], - "602628465": [ - { - "id": "2019042823", - "probability": 1, - "quantity": 1 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 25 - } - ], - "602741290": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - } - ], - "605467368": [ - { - "id": "69511070", - "probability": 1, - "quantity": 3 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 3 - }, - { - "id": "-1581843485", - "probability": 1, - "quantity": 2 - } - ], - "607400343": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 300 - } - ], - "610102428": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "613961768": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "615112838": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "2019042823", - "probability": 1, - "quantity": 1 - } - ], - "634478325": [ - { - "id": "73681876", - "probability": 1, - "quantity": 2 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 2 - } - ], - "642482233": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 10 - } - ], - "649912614": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 13 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 63 - }, - { - "id": "95950017", - "probability": 0.5, - "quantity": 1 - } - ], - "656371026": [ - { - "id": "69511070", - "probability": 1, - "quantity": 85 - } - ], - "656371027": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "656371028": [ - { - "id": "69511070", - "probability": 1, - "quantity": 20 - } - ], - "657352755": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "665332906": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "671063303": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "671706427": [ - { - "id": "317398316", - "probability": 1, - "quantity": 2 - } - ], - "674734128": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 13 - } - ], - "678698219": [ - { - "id": "317398316", - "probability": 1, - "quantity": 10 - }, - { - "id": "95950017", - "probability": 1, - "quantity": 2 - }, - { - "id": "-1021495308", - "probability": 1, - "quantity": 2 - } - ], - "696029452": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "699075597": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 200 - } - ], - "709206314": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - }, - { - "id": "2048317869", - "probability": 0.5, - "quantity": 1 - } - ], - "722955039": [ - { - "id": "69511070", - "probability": 1, - "quantity": 63 - } - ], - "742745918": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "762289806": [ - { - "id": "69511070", - "probability": 1, - "quantity": 60 - } - ], - "782422285": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 15 - } - ], - "785728077": [ - { - "id": "69511070", - "probability": 1, - "quantity": 2 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 1 - } - ], - "794356786": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 5 - } - ], - "794443127": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - } - ], - "795236088": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 15 - }, - { - "id": "-858312878", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "-946369541", - "probability": 0.5, - "quantity": 1 - } - ], - "795371088": [ - { - "id": "317398316", - "probability": 1, - "quantity": 8 - }, - { - "id": "95950017", - "probability": 1, - "quantity": 1 - }, - { - "id": "-1021495308", - "probability": 0.5, - "quantity": 1 - } - ], - "803222026": [ - { - "id": "69511070", - "probability": 1, - "quantity": 63 - } - ], - "809199956": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 200 - } - ], - "809942731": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "818877484": [ - { - "id": "317398316", - "probability": 1, - "quantity": 2 - }, - { - "id": "573926264", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "95950017", - "probability": 0.5, - "quantity": 1 - } - ], - "826309791": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "832133926": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "1414245522", - "probability": 0.5, - "quantity": 1 - } - ], - "833533164": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 125 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "835042040": [ - { - "id": "-1709878924", - "probability": 1, - "quantity": 2 - }, - { - "id": "-1018587433", - "probability": 1, - "quantity": 5 - }, - { - "id": "1719978075", - "probability": 1, - "quantity": 10 - } - ], - "838308300": [ - { - "id": "317398316", - "probability": 1, - "quantity": 5 - } - ], - "850280505": [ - { - "id": "69511070", - "probability": 1, - "quantity": 18 - } - ], - "853471967": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "866332017": [ - { - "id": "69511070", - "probability": 1, - "quantity": 125 - } - ], - "866889860": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 150 - }, - { - "id": "1414245522", - "probability": 0.5, - "quantity": 1 - } - ], - "884424049": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - }, - { - "id": "1414245522", - "probability": 1, - "quantity": 1 - } - ], - "888415708": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - }, - { - "id": "73681876", - "probability": 0.5, - "quantity": 1 - } - ], - "895374329": [ - { - "id": "69511070", - "probability": 1, - "quantity": 88 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 63 - } - ], - "915408809": [ - { - "id": "-265876753", - "probability": 1, - "quantity": 8 - }, - { - "id": "95950017", - "probability": 0.25, - "quantity": 1 - } - ], - "926800282": [ - { - "id": "69511070", - "probability": 1, - "quantity": 35 - } - ], - "935692442": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 15 - } - ], - "936496778": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "952603248": [ - { - "id": "317398316", - "probability": 1, - "quantity": 2 - } - ], - "960673498": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 75 - } - ], - "963906841": [ - { - "id": "-2099697608", - "probability": 1, - "quantity": 5 - } - ], - "968019378": [ - { - "id": "69511070", - "probability": 1, - "quantity": 18 - } - ], - "968421290": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "975983052": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "980333378": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 8 - } - ], - "988652725": [ - { - "id": "317398316", - "probability": 1, - "quantity": 2 - }, - { - "id": "73681876", - "probability": 0.5, - "quantity": 1 - } - ], - "999690781": [ - { - "id": "69511070", - "probability": 1, - "quantity": 15 - } - ], - "1055319033": [ - { - "id": "69511070", - "probability": 1, - "quantity": 1 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 4 - } - ], - "1058261682": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 10 - } - ], - "1072924620": [ - { - "id": "69511070", - "probability": 1, - "quantity": 60 - } - ], - "1079279582": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 8 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 5 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 5 - } - ], - "1081315464": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - }, - { - "id": "2048317869", - "probability": 0.5, - "quantity": 1 - } - ], - "1090916276": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 150 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "1099314009": [ - { - "id": "69511070", - "probability": 1, - "quantity": 20 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "1103488722": [ - { - "id": "317398316", - "probability": 1, - "quantity": 13 - }, - { - "id": "95950017", - "probability": 1, - "quantity": 2 - } - ], - "1104520648": [ - { - "id": "317398316", - "probability": 1, - "quantity": 3 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 1 - }, - { - "id": "1882709339", - "probability": 1, - "quantity": 3 - } - ], - "1107575710": [ - { - "id": "2019042823", - "probability": 1, - "quantity": 3 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 4 - } - ], - "1110385766": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 25 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 13 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 4 - } - ], - "1132603396": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "1142993169": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "1149964039": [ - { - "id": "317398316", - "probability": 1, - "quantity": 2 - }, - { - "id": "73681876", - "probability": 0.5, - "quantity": 1 - } - ], - "1153652756": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 75 - } - ], - "1158340331": [ - { - "id": "69511070", - "probability": 1, - "quantity": 35 - } - ], - "1158340332": [ - { - "id": "69511070", - "probability": 1, - "quantity": 60 - } - ], - "1158340334": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - } - ], - "1159991980": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "1160881421": [ - { - "id": "1160881421", - "probability": 1, - "quantity": 1 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - } - ], - "1168856825": [ - { - "id": "1414245522", - "probability": 1, - "quantity": 1 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 100 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 3 - } - ], - "1171735914": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "1177596584": [ - { - "id": "317398316", - "probability": 1, - "quantity": 2 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 100 - }, - { - "id": "479143914", - "probability": 0.5, - "quantity": 1 - } - ], - "1181207482": [ - { - "id": "317398316", - "probability": 1, - "quantity": 2 - }, - { - "id": "-1994909036", - "probability": 0.5, - "quantity": 1 - } - ], - "1186655046": [ - { - "id": "69511070", - "probability": 1, - "quantity": 88 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "1199391518": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 5 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "1205084994": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "1205607945": [ - { - "id": "69511070", - "probability": 1, - "quantity": 75 - } - ], - "1221063409": [ - { - "id": "317398316", - "probability": 1, - "quantity": 13 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 3 - } - ], - "1230323789": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 15 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 2 - } - ], - "1234878710": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 25 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - }, - { - "id": "73681876", - "probability": 0.5, - "quantity": 1 - } - ], - "1234880403": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - }, - { - "id": "1414245522", - "probability": 1, - "quantity": 2 - } - ], - "1242482355": [ - { - "id": "-567909622", - "probability": 1, - "quantity": 1 - } - ], - "1242522330": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "1248356124": [ - { - "id": "-592016202", - "probability": 1, - "quantity": 10 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 3 - }, - { - "id": "73681876", - "probability": 1, - "quantity": 1 - } - ], - "1259919256": [ - { - "id": "69511070", - "probability": 1, - "quantity": 100 - }, - { - "id": "-2099697608", - "probability": 1, - "quantity": 50 - } - ], - "1263920163": [ - { - "id": "-265876753", - "probability": 1, - "quantity": 18 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "1266491000": [ - { - "id": "2019042823", - "probability": 1, - "quantity": 3 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 4 - } - ], - "1268178466": [ - { - "id": "69511070", - "probability": 1, - "quantity": 15 - } - ], - "1272430949": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "1293102274": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "1296788329": [ - { - "id": "-265876753", - "probability": 1, - "quantity": 25 - }, - { - "id": "95950017", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "73681876", - "probability": 0.25, - "quantity": 1 - } - ], - "1305578813": [ - { - "id": "69511070", - "probability": 1, - "quantity": 75 - } - ], - "1307626005": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 150 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "1315082560": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - }, - { - "id": "2048317869", - "probability": 0.5, - "quantity": 1 - } - ], - "1318558775": [ - { - "id": "317398316", - "probability": 1, - "quantity": 8 - }, - { - "id": "-1021495308", - "probability": 1, - "quantity": 1 - }, - { - "id": "1230323789", - "probability": 0.5, - "quantity": 1 - } - ], - "1324203999": [ - { - "id": "69511070", - "probability": 1, - "quantity": 15 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 38 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 15 - } - ], - "1326180354": [ - { - "id": "69511070", - "probability": 1, - "quantity": 8 - }, - { - "id": "1882709339", - "probability": 0.5, - "quantity": 1 - } - ], - "1327005675": [ - { - "id": "-2099697608", - "probability": 1, - "quantity": 150 - } - ], - "1330084809": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - } - ], - "1346158228": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 15 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "1353298668": [ - { - "id": "317398316", - "probability": 1, - "quantity": 10 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 3 - } - ], - "1358643074": [ - { - "id": "69511070", - "probability": 1, - "quantity": 63 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 15 - }, - { - "id": "95950017", - "probability": 0.5, - "quantity": 1 - } - ], - "1361520181": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "1366282552": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 10 - }, - { - "id": "1234880403", - "probability": 0.5, - "quantity": 1 - } - ], - "1371909803": [ - { - "id": "317398316", - "probability": 1, - "quantity": 2 - }, - { - "id": "73681876", - "probability": 0.5, - "quantity": 1 - } - ], - "1373240771": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 125 - } - ], - "1373971859": [ - { - "id": "95950017", - "probability": 1, - "quantity": 2 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 5 - }, - { - "id": "-1021495308", - "probability": 0.5, - "quantity": 1 - } - ], - "1376065505": [ - { - "id": "69511070", - "probability": 1, - "quantity": 75 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "1382263453": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 150 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 25 - }, - { - "id": "1414245522", - "probability": 0.5, - "quantity": 1 - } - ], - "1390353317": [ - { - "id": "69511070", - "probability": 1, - "quantity": 100 - } - ], - "1400460850": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 10 - } - ], - "1401987718": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 3 - }, - { - "id": "-1899491405", - "probability": 0.5, - "quantity": 1 - } - ], - "1409529282": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - }, - { - "id": "-1021495308", - "probability": 0.5, - "quantity": 1 - } - ], - "1413014235": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "1414245162": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 5 - } - ], - "1414245522": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 15 - } - ], - "1424075905": [ - { - "id": "69511070", - "probability": 1, - "quantity": 10 - } - ], - "1430085198": [ - { - "id": "317398316", - "probability": 1, - "quantity": 2 - }, - { - "id": "73681876", - "probability": 1, - "quantity": 1 - } - ], - "1443579727": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 25 - } - ], - "1451568081": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "1478091698": [ - { - "id": "317398316", - "probability": 1, - "quantity": 4 - } - ], - "1488979457": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 30 - }, - { - "id": "1882709339", - "probability": 1, - "quantity": 3 - }, - { - "id": "95950017", - "probability": 0.5, - "quantity": 1 - } - ], - "1491189398": [ - { - "id": "69511070", - "probability": 1, - "quantity": 8 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "1882709339", - "probability": 0.5, - "quantity": 1 - } - ], - "1491753484": [ - { - "id": "-1709878924", - "probability": 1, - "quantity": 2 - }, - { - "id": "-1018587433", - "probability": 1, - "quantity": 5 - }, - { - "id": "1719978075", - "probability": 1, - "quantity": 10 - } - ], - "1516985844": [ - { - "id": "1414245522", - "probability": 0.5, - "quantity": 1 - } - ], - "1521286012": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 38 - } - ], - "1523195708": [ - { - "id": "73681876", - "probability": 1, - "quantity": 3 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 1 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "1523403414": [ - { - "id": "69511070", - "probability": 1, - "quantity": 5 - } - ], - "1524187186": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 250 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "1524980732": [ - { - "id": "-567909622", - "probability": 0.5, - "quantity": 1 - } - ], - "1525520776": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 10 - } - ], - "1534542921": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 25 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "1538126328": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "1540934679": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 150 - } - ], - "1542290441": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 38 - } - ], - "1545779598": [ - { - "id": "317398316", - "probability": 1, - "quantity": 25 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "-1021495308", - "probability": 1, - "quantity": 2 - }, - { - "id": "176787552", - "probability": 0.5, - "quantity": 1 - } - ], - "1556365900": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 25 - } - ], - "1559779253": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 2 - } - ], - "1559915778": [ - { - "id": "1199391518", - "probability": 1, - "quantity": 2 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - } - ], - "1569882109": [ - { - "id": "1414245522", - "probability": 1, - "quantity": 1 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - } - ], - "1575635062": [ - { - "id": "69511070", - "probability": 1, - "quantity": 100 - } - ], - "1581210395": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "2019042823", - "probability": 1, - "quantity": 1 - } - ], - "1588298435": [ - { - "id": "317398316", - "probability": 1, - "quantity": 10 - }, - { - "id": "95950017", - "probability": 1, - "quantity": 2 - }, - { - "id": "176787552", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "-1021495308", - "probability": 0.5, - "quantity": 1 - } - ], - "1588492232": [ - { - "id": "69511070", - "probability": 1, - "quantity": 100 - }, - { - "id": "73681876", - "probability": 1, - "quantity": 1 - }, - { - "id": "634478325", - "probability": 0.5, - "quantity": 1 - } - ], - "1601468620": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 25 - } - ], - "1602646136": [ - { - "id": "-2099697608", - "probability": 1, - "quantity": 10 - }, - { - "id": "1540934679", - "probability": 0.5, - "quantity": 1 - } - ], - "1603174987": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 38 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 3 - } - ], - "1608640313": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - } - ], - "1614528785": [ - { - "id": "-1709878924", - "probability": 1, - "quantity": 3 - }, - { - "id": "-1018587433", - "probability": 1, - "quantity": 8 - }, - { - "id": "1719978075", - "probability": 1, - "quantity": 15 - } - ], - "1623701499": [ - { - "id": "69511070", - "probability": 1, - "quantity": 15 - } - ], - "1629293099": [ - { - "id": "-1938052175", - "probability": 1, - "quantity": 25 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 10 - } - ], - "1638322904": [ - { - "id": "95950017", - "probability": 1, - "quantity": 1 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 125 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 125 - }, - { - "id": "-592016202", - "probability": 0.5, - "quantity": 1 - } - ], - "1643667218": [ - { - "id": "69511070", - "probability": 1, - "quantity": 175 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 3 - } - ], - "1655650836": [ - { - "id": "69511070", - "probability": 1, - "quantity": 100 - }, - { - "id": "1882709339", - "probability": 1, - "quantity": 1 - } - ], - "1655979682": [ - { - "id": "69511070", - "probability": 1, - "quantity": 10 - } - ], - "1658229558": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 8 - } - ], - "1659114910": [ - { - "id": "69511070", - "probability": 1, - "quantity": 18 - } - ], - "1659447559": [ - { - "id": "1414245522", - "probability": 1, - "quantity": 1 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 150 - } - ], - "1675639563": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 8 - } - ], - "1686524871": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "1696050067": [ - { - "id": "69511070", - "probability": 1, - "quantity": 100 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 3 - }, - { - "id": "479143914", - "probability": 0.5, - "quantity": 1 - } - ], - "1697996440": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "1711033574": [ - { - "id": "1719978075", - "probability": 1, - "quantity": 10 - } - ], - "1712070256": [ - { - "id": "69511070", - "probability": 1, - "quantity": 3 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 5 - } - ], - "1714496074": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 8 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 3 - } - ], - "1722154847": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 5 - } - ], - "1723747470": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 25 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 75 - } - ], - "1729120840": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 150 - } - ], - "1729712564": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "1744298439": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 15 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 8 - } - ], - "1746956556": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 8 - }, - { - "id": "1719978075", - "probability": 1, - "quantity": 35 - } - ], - "1751045826": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 20 - }, - { - "id": "1234880403", - "probability": 0.5, - "quantity": 1 - } - ], - "1784406797": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "1796682209": [ - { - "id": "317398316", - "probability": 1, - "quantity": 4 - }, - { - "id": "1230323789", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "-1021495308", - "probability": 0.5, - "quantity": 1 - } - ], - "1803831286": [ - { - "id": "1803831286", - "probability": 1, - "quantity": 1 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 10 - } - ], - "1814288539": [ - { - "id": "1719978075", - "probability": 1, - "quantity": 15 - } - ], - "1819863051": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 3 - } - ], - "1835946060": [ - { - "id": "317398316", - "probability": 1, - "quantity": 5 - } - ], - "1840570710": [ - { - "id": "69511070", - "probability": 1, - "quantity": 100 - }, - { - "id": "2019042823", - "probability": 1, - "quantity": 2 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 250 - } - ], - "1840822026": [ - { - "id": "-265876753", - "probability": 1, - "quantity": 30 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 10 - } - ], - "1849887541": [ - { - "id": "317398316", - "probability": 1, - "quantity": 3 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 1 - } - ], - "1850456855": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 5 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - }, - { - "id": "1199391518", - "probability": 0.5, - "quantity": 1 - } - ], - "1856217390": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 15 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "1865253052": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "1874610722": [ - { - "id": "69511070", - "probability": 1, - "quantity": 75 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 3 - } - ], - "1877339384": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "1882709339": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 2 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 15 - } - ], - "1883981798": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - } - ], - "1883981800": [ - { - "id": "69511070", - "probability": 1, - "quantity": 60 - } - ], - "1883981801": [ - { - "id": "69511070", - "probability": 1, - "quantity": 35 - } - ], - "1885488976": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 200 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - } - ], - "1895235349": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "1903654061": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "2019042823", - "probability": 0.5, - "quantity": 1 - } - ], - "1914691295": [ - { - "id": "317398316", - "probability": 1, - "quantity": 2 - }, - { - "id": "838308300", - "probability": 1, - "quantity": 1 - }, - { - "id": "573926264", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "95950017", - "probability": 0.5, - "quantity": 1 - } - ], - "1946219319": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "1948067030": [ - { - "id": "69511070", - "probability": 1, - "quantity": 150 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 2 - }, - { - "id": "-316250604", - "probability": 0.5, - "quantity": 1 - } - ], - "1950721418": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "1951603367": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "1953903201": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 10 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "1965232394": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - }, - { - "id": "1414245522", - "probability": 1, - "quantity": 1 - } - ], - "1973949960": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 25 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 10 - } - ], - "1975934948": [ - { - "id": "-265876753", - "probability": 1, - "quantity": 15 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 3 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 5 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 10 - } - ], - "1983621560": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "1989785143": [ - { - "id": "317398316", - "probability": 1, - "quantity": 2 - } - ], - "1992974553": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - } - ], - "2005491391": [ - { - "id": "317398316", - "probability": 1, - "quantity": 5 - } - ], - "2009734114": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - } - ], - "2019042823": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 50 - } - ], - "2023888403": [ - { - "id": "317398316", - "probability": 1, - "quantity": 3 - }, - { - "id": "73681876", - "probability": 0.5, - "quantity": 1 - } - ], - "2040726127": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - }, - { - "id": "317398316", - "probability": 0.5, - "quantity": 1 - } - ], - "2041899972": [ - { - "id": "69511070", - "probability": 1, - "quantity": 150 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 2 - }, - { - "id": "-316250604", - "probability": 0.5, - "quantity": 1 - } - ], - "2068884361": [ - { - "id": "1234880403", - "probability": 1, - "quantity": 3 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 25 - } - ], - "2070189026": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 25 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - } - ], - "2087678962": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 250 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 100 - } - ], - "2090395347": [ - { - "id": "317398316", - "probability": 1, - "quantity": 3 - }, - { - "id": "73681876", - "probability": 0.5, - "quantity": 1 - } - ], - "2100007442": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "2104517339": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "2106561762": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 3 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "2114754781": [ - { - "id": "69511070", - "probability": 1, - "quantity": 8 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - }, - { - "id": "-1673693549", - "probability": 0.5, - "quantity": 1 - } - ], - "2126889441": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "-1685290200": [ - { - "id": "69511070", - "probability": 1, - "quantity": 2 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 3 - } - ], - "-1036635990": [ - { - "id": "69511070", - "probability": 1, - "quantity": 2 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 3 - }, - { - "id": "-1581843485", - "probability": 1, - "quantity": 5 - } - ], - "-727717969": [ - { - "id": "69511070", - "probability": 1, - "quantity": 2 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 3 - } - ], - "-1211166256": [ - { - "id": "69511070", - "probability": 1, - "quantity": 2 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 1 - } - ], - "-2124352573": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "-2027793839": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - } - ], - "-1615281216": [ - { - "id": "69511070", - "probability": 1, - "quantity": 75 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 3 - } - ], - "-2139580305": [ - { - "id": "317398316", - "probability": 1, - "quantity": 5 - }, - { - "id": "1523195708", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "634478325", - "probability": 0.5, - "quantity": 1 - } - ], - "-2072273936": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 2 - } - ], - "-702051347": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 3 - } - ], - "-1622110948": [ - { - "id": "2019042823", - "probability": 1, - "quantity": 3 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 4 - } - ], - "-1022661119": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 3 - } - ], - "-1211268013": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "-1274093662": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-321431890": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 25 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1621539785": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-8312704": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 15 - } - ], - "-1273339005": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 30 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - } - ], - "-1262185308": [ - { - "id": "69511070", - "probability": 1, - "quantity": 20 - }, - { - "id": "479143914", - "probability": 0.5, - "quantity": 1 - } - ], - "-690968985": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-515830359": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 5 - } - ], - "-1903165497": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 8 - }, - { - "id": "1719978075", - "probability": 1, - "quantity": 15 - } - ], - "-1478094705": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - }, - { - "id": "2019042823", - "probability": 0.5, - "quantity": 1 - } - ], - "-1113501606": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - } - ], - "-23994173": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "-1549739227": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 10 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 8 - }, - { - "id": "1234880403", - "probability": 0.5, - "quantity": 1 - } - ], - "-1004426654": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - } - ], - "-1266045928": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 20 - } - ], - "-761829530": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "-194509282": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "-1778897469": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1040518150": [ - { - "id": "69511070", - "probability": 1, - "quantity": 88 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 63 - } - ], - "-1379036069": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - } - ], - "-912398867": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - } - ], - "-1530414568": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1117626326": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-152332823": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 13 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - } - ], - "-1916473915": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 13 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 3 - } - ], - "-770304148": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 13 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 3 - } - ], - "-1501451746": [ - { - "id": "69511070", - "probability": 1, - "quantity": 75 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "-803263829": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 8 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 30 - }, - { - "id": "1234880403", - "probability": 0.5, - "quantity": 1 - } - ], - "-1488398114": [ - { - "id": "2019042823", - "probability": 1, - "quantity": 1 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - } - ], - "-1588628467": [ - { - "id": "317398316", - "probability": 1, - "quantity": 3 - }, - { - "id": "1523195708", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "-1044468317", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "888415708", - "probability": 0.5, - "quantity": 1 - } - ], - "-1950721390": [ - { - "id": "-2099697608", - "probability": 1, - "quantity": 100 - } - ], - "-216999575": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1049881973": [ - { - "id": "69511070", - "probability": 1, - "quantity": 18 - } - ], - "-1667224349": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 2 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-129230242": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "-209869746": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "-151387974": [ - { - "id": "69511070", - "probability": 1, - "quantity": 3 - } - ], - "-113413047": [ - { - "id": "69511070", - "probability": 1, - "quantity": 35 - } - ], - "-2022172587": [ - { - "id": "317398316", - "probability": 1, - "quantity": 3 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-502177121": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1112793865": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 13 - } - ], - "-765183617": [ - { - "id": "69511070", - "probability": 1, - "quantity": 88 - }, - { - "id": "95950017", - "probability": 1, - "quantity": 1 - } - ], - "-1323101799": [ - { - "id": "1199391518", - "probability": 1, - "quantity": 3 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 2 - } - ], - "-258574361": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 50 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - } - ], - "-854270928": [ - { - "id": "69511070", - "probability": 1, - "quantity": 10 - } - ], - "-22883916": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - }, - { - "id": "2048317869", - "probability": 0.5, - "quantity": 1 - } - ], - "-1519126340": [ - { - "id": "69511070", - "probability": 1, - "quantity": 100 - } - ], - "-979302481": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - } - ], - "-747743875": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 30 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - } - ], - "-1196547867": [ - { - "id": "317398316", - "probability": 1, - "quantity": 3 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 100 - } - ], - "-629028935": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 20 - } - ], - "-784870360": [ - { - "id": "69511070", - "probability": 1, - "quantity": 100 - } - ], - "-1448252298": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1673693549": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 1 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-1557377697": [ - { - "id": "69511070", - "probability": 1, - "quantity": 8 - } - ], - "-75944661": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 38 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 15 - } - ], - "-1321651331": [ - { - "id": "69511070", - "probability": 1, - "quantity": 3 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 5 - }, - { - "id": "-1581843485", - "probability": 1, - "quantity": 3 - } - ], - "-592016202": [ - { - "id": "-265876753", - "probability": 1, - "quantity": 25 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 2 - }, - { - "id": "-1581843485", - "probability": 1, - "quantity": 5 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 5 - } - ], - "-1230433643": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 13 - } - ], - "-1379835144": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 13 - } - ], - "-1961560162": [ - { - "id": "-265876753", - "probability": 1, - "quantity": 5 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 5 - } - ], - "-1913996738": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 38 - } - ], - "-1215753368": [ - { - "id": "317398316", - "probability": 1, - "quantity": 8 - }, - { - "id": "95950017", - "probability": 1, - "quantity": 3 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 50 - }, - { - "id": "-1673693549", - "probability": 1, - "quantity": 1 - } - ], - "-936921910": [ - { - "id": "-265876753", - "probability": 1, - "quantity": 13 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "-939424778": [ - { - "id": "69511070", - "probability": 1, - "quantity": 60 - } - ], - "-196667575": [ - { - "id": "69511070", - "probability": 1, - "quantity": 15 - } - ], - "-1880231361": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "-265292885": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1166712463": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1973785141": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 15 - }, - { - "id": "95950017", - "probability": 0.5, - "quantity": 1 - } - ], - "-1000573653": [ - { - "id": "2019042823", - "probability": 0.5, - "quantity": 1 - } - ], - "-52398594": [ - { - "id": "1719978075", - "probability": 1, - "quantity": 15 - } - ], - "-849373693": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1999722522": [ - { - "id": "-2099697608", - "probability": 1, - "quantity": 100 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 25 - } - ], - "-148794216": [ - { - "id": "69511070", - "probability": 1, - "quantity": 150 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 1 - } - ], - "-1043618880": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 50 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - } - ], - "-695124222": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 15 - } - ], - "-1679267738": [ - { - "id": "-2099697608", - "probability": 1, - "quantity": 125 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-656349006": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 15 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 8 - } - ], - "-1306288356": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 5 - } - ], - "-265876753": [ - { - "id": "-1938052175", - "probability": 1, - "quantity": 2 - }, - { - "id": "-1581843485", - "probability": 1, - "quantity": 1 - } - ], - "-1252059217": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1696379844": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "-1507239837": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1569700847": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "-297099594": [ - { - "id": "-1709878924", - "probability": 1, - "quantity": 3 - }, - { - "id": "-1018587433", - "probability": 1, - "quantity": 8 - }, - { - "id": "1719978075", - "probability": 1, - "quantity": 15 - } - ], - "-2024549027": [ - { - "id": "-1709878924", - "probability": 1, - "quantity": 3 - }, - { - "id": "-1018587433", - "probability": 1, - "quantity": 8 - }, - { - "id": "1719978075", - "probability": 1, - "quantity": 15 - } - ], - "-1102429027": [ - { - "id": "-1994909036", - "probability": 1, - "quantity": 1 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 2 - } - ], - "-1778159885": [ - { - "id": "317398316", - "probability": 1, - "quantity": 2 - }, - { - "id": "-1994909036", - "probability": 0.5, - "quantity": 1 - } - ], - "-1772746857": [ - { - "id": "2019042823", - "probability": 1, - "quantity": 3 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 4 - } - ], - "-722629980": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "-1773144852": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 5 - } - ], - "-691113464": [ - { - "id": "-2099697608", - "probability": 1, - "quantity": 1500 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 3 - } - ], - "-967648160": [ - { - "id": "-2099697608", - "probability": 1, - "quantity": 750 - } - ], - "-335089230": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 1500 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 1 - } - ], - "-985781766": [ - { - "id": "-2099697608", - "probability": 1, - "quantity": 750 - } - ], - "-1802083073": [ - { - "id": "69511070", - "probability": 1, - "quantity": 60 - } - ], - "-1023065463": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 5 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 2 - } - ], - "-1841918730": [ - { - "id": "-265876753", - "probability": 1, - "quantity": 50 - }, - { - "id": "95950017", - "probability": 0.5, - "quantity": 1 - } - ], - "-1214542497": [ - { - "id": "317398316", - "probability": 1, - "quantity": 30 - }, - { - "id": "-1021495308", - "probability": 1, - "quantity": 2 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 2 - }, - { - "id": "176787552", - "probability": 0.5, - "quantity": 1 - } - ], - "-1442559428": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "-1663759755": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 15 - } - ], - "-218009552": [ - { - "id": "317398316", - "probability": 1, - "quantity": 10 - }, - { - "id": "95950017", - "probability": 1, - "quantity": 2 - }, - { - "id": "73681876", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "634478325", - "probability": 0.5, - "quantity": 1 - } - ], - "-246672609": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 60 - } - ], - "-1997543660": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 25 - } - ], - "-1989600732": [ - { - "id": "69511070", - "probability": 1, - "quantity": 100 - } - ], - "-143132326": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 125 - } - ], - "-1691396643": [ - { - "id": "69511070", - "probability": 1, - "quantity": 2 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 4 - } - ], - "-44876289": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-2012470695": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 8 - } - ], - "-697981032": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - }, - { - "id": "2019042823", - "probability": 0.5, - "quantity": 1 - } - ], - "-2001260025": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - }, - { - "id": "479143914", - "probability": 0.5, - "quantity": 1 - } - ], - "-1824943010": [ - { - "id": "-567909622", - "probability": 1, - "quantity": 1 - } - ], - "-1163532624": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 25 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - } - ], - "-979951147": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 13 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "-97459906": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 25 - } - ], - "-1330640246": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-850982208": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 38 - } - ], - "-778367295": [ - { - "id": "317398316", - "probability": 1, - "quantity": 20 - }, - { - "id": "95950017", - "probability": 1, - "quantity": 3 - }, - { - "id": "-1021495308", - "probability": 1, - "quantity": 3 - }, - { - "id": "176787552", - "probability": 0.5, - "quantity": 1 - } - ], - "-845557339": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "-907422733": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 10 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 50 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 2 - } - ], - "-489848205": [ - { - "id": "-1018587433", - "probability": 1, - "quantity": 10 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "-1693832478": [ - { - "id": "69511070", - "probability": 1, - "quantity": 75 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 75 - } - ], - "-1992717673": [ - { - "id": "-2099697608", - "probability": 1, - "quantity": 250 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 300 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 38 - } - ], - "-1100168350": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 250 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 100 - }, - { - "id": "2019042823", - "probability": 1, - "quantity": 1 - } - ], - "-798293154": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-134959124": [ - { - "id": "-1709878924", - "probability": 1, - "quantity": 2 - }, - { - "id": "-1018587433", - "probability": 1, - "quantity": 5 - }, - { - "id": "1719978075", - "probability": 1, - "quantity": 10 - } - ], - "-1624770297": [ - { - "id": "-1709878924", - "probability": 1, - "quantity": 2 - }, - { - "id": "-1018587433", - "probability": 1, - "quantity": 5 - }, - { - "id": "1719978075", - "probability": 1, - "quantity": 10 - } - ], - "-110921842": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 25 - } - ], - "-1469578201": [ - { - "id": "1882709339", - "probability": 1, - "quantity": 1 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-946369541": [ - { - "id": "-1018587433", - "probability": 0.38, - "quantity": 1 - }, - { - "id": "-858312878", - "probability": 0.13, - "quantity": 1 - } - ], - "-89874794": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - } - ], - "-1812555177": [ - { - "id": "317398316", - "probability": 1, - "quantity": 20 - }, - { - "id": "-1021495308", - "probability": 1, - "quantity": 1 - }, - { - "id": "838308300", - "probability": 1, - "quantity": 1 - }, - { - "id": "176787552", - "probability": 0.5, - "quantity": 1 - } - ], - "-763071910": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 20 - }, - { - "id": "1234880403", - "probability": 0.5, - "quantity": 1 - } - ], - "-2069578888": [ - { - "id": "317398316", - "probability": 1, - "quantity": 20 - }, - { - "id": "-1021495308", - "probability": 1, - "quantity": 3 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 3 - }, - { - "id": "176787552", - "probability": 0.5, - "quantity": 1 - } - ], - "-852563019": [ - { - "id": "317398316", - "probability": 1, - "quantity": 13 - }, - { - "id": "573926264", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "95950017", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "-1021495308", - "probability": 0.5, - "quantity": 1 - } - ], - "-1966748496": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "-1137865085": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 20 - } - ], - "-586784898": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 13 - } - ], - "-1732475823": [ - { - "id": "-1709878924", - "probability": 1, - "quantity": 2 - }, - { - "id": "-1018587433", - "probability": 1, - "quantity": 5 - }, - { - "id": "1719978075", - "probability": 1, - "quantity": 10 - } - ], - "-1423304443": [ - { - "id": "69511070", - "probability": 1, - "quantity": 100 - } - ], - "-493159321": [ - { - "id": "69511070", - "probability": 1, - "quantity": 35 - } - ], - "-1819233322": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "-583379016": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 25 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-746647361": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-194953424": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 25 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 8 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 3 - } - ], - "-1199897169": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-148229307": [ - { - "id": "69511070", - "probability": 1, - "quantity": 125 - } - ], - "-1021495308": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 10 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "-1199897172": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-819720157": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - } - ], - "-1539025626": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 8 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 5 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "-1843426638": [ - { - "id": "95950017", - "probability": 1, - "quantity": 2 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 100 - } - ], - "-20045316": [ - { - "id": "69511070", - "probability": 1, - "quantity": 63 - } - ], - "-2047081330": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "-1123473824": [ - { - "id": "317398316", - "probability": 1, - "quantity": 13 - }, - { - "id": "95950017", - "probability": 1, - "quantity": 2 - } - ], - "-1405508498": [ - { - "id": "317398316", - "probability": 1, - "quantity": 5 - } - ], - "-2097376851": [ - { - "id": "69511070", - "probability": 1, - "quantity": 1 - } - ], - "-961457160": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "-1518883088": [ - { - "id": "317398316", - "probability": 1, - "quantity": 5 - }, - { - "id": "73681876", - "probability": 1, - "quantity": 1 - } - ], - "-1506417026": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 30 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - } - ], - "-1832422579": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "-1286302544": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-7270019": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 15 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 8 - } - ], - "-733625651": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 50 - }, - { - "id": "2019042823", - "probability": 0.5, - "quantity": 1 - } - ], - "-2040817543": [ - { - "id": "69511070", - "probability": 1, - "quantity": 10 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 3 - } - ], - "-1779183908": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 3 - } - ], - "-379734527": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 15 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 8 - } - ], - "-1302129395": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 63 - } - ], - "-1442496789": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 250 - } - ], - "-144513264": [ - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "-1370759135": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "-365097295": [ - { - "id": "69511070", - "probability": 1, - "quantity": 150 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "-2049214035": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 75 - }, - { - "id": "-1021495308", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "479143914", - "probability": 0.5, - "quantity": 1 - } - ], - "-956706906": [ - { - "id": "69511070", - "probability": 1, - "quantity": 75 - } - ], - "-1429456799": [ - { - "id": "69511070", - "probability": 1, - "quantity": 75 - } - ], - "-986782031": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - }, - { - "id": "2048317869", - "probability": 0.5, - "quantity": 1 - } - ], - "-1736356576": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 75 - }, - { - "id": "479143914", - "probability": 0.5, - "quantity": 1 - } - ], - "-1553999294": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 15 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 8 - } - ], - "-1160621614": [ - { - "id": "69511070", - "probability": 1, - "quantity": 15 - } - ], - "-1486461488": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 5 - } - ], - "-454370658": [ - { - "id": "69511070", - "probability": 1, - "quantity": 10 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 8 - } - ], - "-324675402": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 10 - } - ], - "-1861522751": [ - { - "id": "69511070", - "probability": 1, - "quantity": 100 - } - ], - "-1044468317": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - }, - { - "id": "73681876", - "probability": 0.5, - "quantity": 1 - } - ], - "-566907190": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 5 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 25 - }, - { - "id": "73681876", - "probability": 0.5, - "quantity": 1 - } - ], - "-2002277461": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 10 - }, - { - "id": "1199391518", - "probability": 1, - "quantity": 1 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - } - ], - "-699558439": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 10 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - }, - { - "id": "1199391518", - "probability": 0.5, - "quantity": 1 - } - ], - "-742865266": [ - { - "id": "95950017", - "probability": 1, - "quantity": 1 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 75 - }, - { - "id": "-592016202", - "probability": 1, - "quantity": 5 - } - ], - "-1863063690": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 65 - } - ], - "-458565393": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1985799200": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 13 - } - ], - "-1104881824": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 10 - } - ], - "-173268132": [ - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "-173268125": [ - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "-173268126": [ - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "-173268131": [ - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "-173268129": [ - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "-173268128": [ - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "-262590403": [ - { - "id": "1882709339", - "probability": 1, - "quantity": 3 - }, - { - "id": "95950017", - "probability": 0.5, - "quantity": 1 - } - ], - "-1978999529": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - }, - { - "id": "1199391518", - "probability": 0.5, - "quantity": 1 - } - ], - "-1506397857": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - }, - { - "id": "95950017", - "probability": 0.5, - "quantity": 1 - } - ], - "-1780802565": [ - { - "id": "1882709339", - "probability": 1, - "quantity": 3 - }, - { - "id": "95950017", - "probability": 0.5, - "quantity": 1 - } - ], - "-384243979": [ - { - "id": "-265876753", - "probability": 1, - "quantity": 3 - }, - { - "id": "95950017", - "probability": 0.8, - "quantity": 1 - } - ], - "-1009359066": [ - { - "id": "317398316", - "probability": 1, - "quantity": 25 - } - ], - "-559599960": [ - { - "id": "-2099697608", - "probability": 1, - "quantity": 50 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "-1878475007": [ - { - "id": "1840822026", - "probability": 1, - "quantity": 2 - }, - { - "id": "-369760990", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "1414245522", - "probability": 0.5, - "quantity": 1 - } - ], - "-1958316066": [ - { - "id": "2019042823", - "probability": 1, - "quantity": 3 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 4 - } - ], - "-904863145": [ - { - "id": "69511070", - "probability": 1, - "quantity": 225 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 2 - }, - { - "id": "573926264", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "-1021495308", - "probability": 0.5, - "quantity": 1 - } - ], - "-1994909036": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 8 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 100 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "-2067472972": [ - { - "id": "69511070", - "probability": 1, - "quantity": 75 - } - ], - "-2025184684": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 13 - } - ], - "-796583652": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 75 - } - ], - "-1695367501": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 15 - } - ], - "-1536855921": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - } - ], - "-2107018088": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 25 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1368584029": [ - { - "id": "69511070", - "probability": 1, - "quantity": 100 - } - ], - "-1850571427": [ - { - "id": "317398316", - "probability": 1, - "quantity": 3 - } - ], - "-855748505": [ - { - "id": "317398316", - "probability": 1, - "quantity": 3 - } - ], - "-282113991": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 13 - } - ], - "-2073432256": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-216116642": [ - { - "id": "69511070", - "probability": 1, - "quantity": 10 - } - ], - "-1073015016": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 75 - }, - { - "id": "996293980", - "probability": 0.5, - "quantity": 1 - } - ], - "-769647921": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 13 - } - ], - "-333406828": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 250 - } - ], - "-1754948969": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 15 - } - ], - "-2058362263": [ - { - "id": "-1018587433", - "probability": 1, - "quantity": 5 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 3 - } - ], - "-869598982": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "-1293296287": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 250 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 125 - } - ], - "-692338819": [ - { - "id": "317398316", - "probability": 1, - "quantity": 3 - } - ], - "-369760990": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "-132247350": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 25 - }, - { - "id": "2019042823", - "probability": 0.5, - "quantity": 1 - } - ], - "-1138208076": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 38 - } - ], - "-695978112": [ - { - "id": "317398316", - "probability": 1, - "quantity": 2 - }, - { - "id": "73681876", - "probability": 0.5, - "quantity": 1 - } - ], - "-17123659": [ - { - "id": "-17123659", - "probability": 1, - "quantity": 1 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 40 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 100 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 13 - } - ], - "-582782051": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - }, - { - "id": "479143914", - "probability": 0.5, - "quantity": 1 - } - ], - "-48090175": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 30 - }, - { - "id": "1234880403", - "probability": 0.5, - "quantity": 1 - } - ], - "-842267147": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - } - ], - "-555122905": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 15 - } - ], - "-343857907": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-41440462": [ - { - "id": "317398316", - "probability": 1, - "quantity": 10 - }, - { - "id": "95950017", - "probability": 1, - "quantity": 2 - }, - { - "id": "-1021495308", - "probability": 1, - "quantity": 2 - } - ], - "-1517740219": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - }, - { - "id": "-1673693549", - "probability": 0.5, - "quantity": 1 - } - ], - "-1800345240": [ - { - "id": "69511070", - "probability": 1, - "quantity": 9 - } - ], - "-1100422738": [ - { - "id": "69511070", - "probability": 1, - "quantity": 75 - } - ], - "-563624462": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-596876839": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-781014061": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1331212963": [ - { - "id": "-932201673", - "probability": 1, - "quantity": 10 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 75 - } - ], - "-1535621066": [ - { - "id": "-2099697608", - "probability": 1, - "quantity": 250 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - } - ], - "-1583967946": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - }, - { - "id": "-2099697608", - "probability": 1, - "quantity": 50 - } - ], - "-1049172752": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-1421257350": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 150 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1614955425": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "-1785231475": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 30 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 1 - } - ], - "-1108136649": [ - { - "id": "1381010055", - "probability": 1, - "quantity": 10 - }, - { - "id": "1234880403", - "probability": 1, - "quantity": 5 - } - ], - "-626174997": [ - { - "id": "69511070", - "probability": 1, - "quantity": 88 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 63 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 3 - } - ], - "-295829489": [ - { - "id": "317398316", - "probability": 1, - "quantity": 13 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 2 - }, - { - "id": "95950017", - "probability": 1, - "quantity": 1 - }, - { - "id": "-629028935", - "probability": 1, - "quantity": 2 - } - ], - "-1758372725": [ - { - "id": "317398316", - "probability": 1, - "quantity": 5 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "1230323789", - "probability": 0.5, - "quantity": 1 - }, - { - "id": "-1021495308", - "probability": 0.5, - "quantity": 1 - } - ], - "-97956382": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 500 - } - ], - "-1671551935": [ - { - "id": "-265876753", - "probability": 1, - "quantity": 5 - }, - { - "id": "95950017", - "probability": 0.17, - "quantity": 1 - } - ], - "-1478445584": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 10 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 5 - }, - { - "id": "-1557377697", - "probability": 0.5, - "quantity": 1 - } - ], - "-901370585": [ - { - "id": "69511070", - "probability": 1, - "quantity": 25 - } - ], - "-1647846966": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-885833256": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "-280223496": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 15 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 8 - } - ], - "-99886070": [ - { - "id": "69511070", - "probability": 1, - "quantity": 13 - }, - { - "id": "-946369541", - "probability": 1, - "quantity": 5 - } - ], - "-1538109120": [ - { - "id": "69511070", - "probability": 1, - "quantity": 10 - }, - { - "id": "-265876753", - "probability": 1, - "quantity": 8 - } - ], - "-1344017968": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 10 - } - ], - "-463122489": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 125 - } - ], - "-1863559151": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 125 - }, - { - "id": "2019042823", - "probability": 0.5, - "quantity": 1 - } - ], - "-119235651": [ - { - "id": "69511070", - "probability": 1, - "quantity": 50 - } - ], - "-1815301988": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-1284169891": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 125 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 100 - }, - { - "id": "479143914", - "probability": 0.5, - "quantity": 1 - } - ], - "-1367281941": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 75 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-132516482": [ - { - "id": "317398316", - "probability": 1, - "quantity": 2 - }, - { - "id": "73681876", - "probability": 0.5, - "quantity": 1 - } - ], - "-1101924344": [ - { - "id": "69511070", - "probability": 1, - "quantity": 38 - } - ], - "-96256997": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - }, - { - "id": "69511070", - "probability": 1, - "quantity": 88 - } - ], - "-1819763926": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 250 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 5 - }, - { - "id": "479143914", - "probability": 1, - "quantity": 2 - }, - { - "id": "-1994909036", - "probability": 1, - "quantity": 2 - } - ], - "-144417939": [ - { - "id": "317398316", - "probability": 1, - "quantity": 1 - } - ], - "-1478212975": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 5 - }, - { - "id": "2048317869", - "probability": 0.5, - "quantity": 1 - } - ], - "-2094954543": [ - { - "id": "-858312878", - "probability": 1, - "quantity": 8 - }, - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - } - ], - "-1336109173": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 175 - } - ], - "-1023374709": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - } - ], - "-180129657": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 50 - } - ], - "-1234735557": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 7 - }, - { - "id": "-2099697608", - "probability": 1, - "quantity": 3 - } - ], - "-92759291": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 75 - } - ], - "-1151332840": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 100 - } - ], - "-316250604": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 150 - }, - { - "id": "1414245522", - "probability": 1, - "quantity": 2 - } - ], - "-1183726687": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 25 - } - ], - "-41896755": [ - { - "id": "69511070", - "probability": 1, - "quantity": 250 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 10 - } - ], - "-1607980696": [ - { - "id": "69511070", - "probability": 1, - "quantity": 500 - }, - { - "id": "317398316", - "probability": 1, - "quantity": 50 - } - ], - "-996185386": [ - { - "id": "-151838493", - "probability": 1, - "quantity": 75 - }, - { - "id": "-858312878", - "probability": 1, - "quantity": 8 - } - ], - "-211235948": [ - { - "id": "1719978075", - "probability": 1, - "quantity": 25 - } - ] + "3222790": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "3380160": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "14241751": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 6 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 3 + }, + { + "id": "-858312878", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 4 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 2 + }, + { + "id": "-858312878", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "15388698": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "20489901": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "21402876": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "23352662": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "23391694": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "28201841": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1021495308", + "probability": 1, + "quantity": 3 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 30 + }, + { + "id": "176787552", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1021495308", + "probability": 1, + "quantity": 2 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 20 + }, + { + "id": "176787552", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "39600618": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "42535890": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 180 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "51984655": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1581843485", + "probability": 1, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1581843485", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "60528587": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1199391518", + "probability": 1, + "quantity": 3 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1199391518", + "probability": 1, + "quantity": 2 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "73681876": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 24 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 16 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "86840834": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 3 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 5 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 2 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "95950017": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 6 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 4 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "98508942": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 105 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 70 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "99588025": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 900 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 600 + } + ] + } + }, + "106959911": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 6 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 4 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "121049755": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 90 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "140006625": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + }, + { + "id": "634478325", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "634478325", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "143803535": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 18 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 12 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "170758448": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 3 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": "0.5", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 75 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 50 + } + ] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "171931394": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "-2099697608", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "-2099697608", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "174866732": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 48 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 32 + } + ] + } + }, + "176787552": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 30 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 20 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "177226991": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "190184021": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "196700171": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "198438816": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 12 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 8 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "200773292": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "204391461": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-321733511", + "probability": 1, + "quantity": 3 + }, + { + "id": "-2099697608", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-321733511", + "probability": 1, + "quantity": 2 + }, + { + "id": "-2099697608", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "215754713": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 5 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 4 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "223891266": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "237239288": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 24 + }, + { + "id": "1234880403", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 16 + }, + { + "id": "1234880403", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "240752557": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 105 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 70 + } + ] + } + }, + "254522515": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1079279582", + "probability": 1, + "quantity": 2 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1079279582", + "probability": 1, + "quantity": 1 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "261913429": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 9 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 8 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 6 + } + ] + } + }, + "268565518": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 75 + } + ] + }, + "shredder": { + "efficiency": "0.5", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 25 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 62 + } + ] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 50 + } + ] + } + }, + "271048478": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "2048317869", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + }, + { + "id": "2048317869", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "273172220": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "282103175": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "286648290": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "296519935": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "304481038": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 6 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 4 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "343045591": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "73681876", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + }, + { + "id": "73681876", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "349762871": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 9 + }, + { + "id": "95950017", + "probability": 0.3, + "quantity": 1 + }, + { + "id": "-592016202", + "probability": 0.3, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 6 + }, + { + "id": "95950017", + "probability": 0.2, + "quantity": 1 + }, + { + "id": "-592016202", + "probability": 0.2, + "quantity": 1 + } + ] + } + }, + "352321488": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "352499047": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 300 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 150 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + }, + { + "id": "1414245522", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 200 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 100 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 1 + }, + { + "id": "1414245522", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "359723196": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 6 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 4 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "363163265": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "418081930": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 180 + }, + { + "id": "1414245522", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "1414245522", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "442289265": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 8 + }, + { + "id": "73681876", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 5 + }, + { + "id": "73681876", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "442886268": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 24 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 16 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "443432036": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "446206234": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 24 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 16 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "476066818": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "479143914": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 12 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 8 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "486661382": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 240 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 240 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 160 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 160 + } + ] + } + }, + "492357192": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "528668503": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "-1673693549", + "probability": 1, + "quantity": 2 + }, + { + "id": "479143914", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 80 + }, + { + "id": "-1673693549", + "probability": 1, + "quantity": 1 + }, + { + "id": "479143914", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "553270375": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 6 + }, + { + "id": "73681876", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 4 + }, + { + "id": "73681876", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "553887414": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "996293980", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "996293980", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "559147458": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "567235583": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "567871954": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 20 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "573676040": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 480 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 320 + } + ] + } + }, + "573926264": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 18 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 12 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "576509618": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 72 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 48 + } + ] + } + }, + "588596902": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 1 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "593465182": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "596469572": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "602628465": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 2 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 1 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "602741290": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "605467368": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 3 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 3 + }, + { + "id": "-1581843485", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1581843485", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "607400343": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 360 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 240 + } + ] + } + }, + "610102428": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "613961768": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "615112838": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "2019042823", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "2019042823", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "634478325": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "73681876", + "probability": 1, + "quantity": 2 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "73681876", + "probability": 1, + "quantity": 2 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "642482233": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "649912614": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 15 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 75 + }, + { + "id": "95950017", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 10 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 50 + }, + { + "id": "95950017", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "656371026": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 102 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 68 + } + ] + } + }, + "656371027": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "656371028": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 24 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 16 + } + ] + } + }, + "657352755": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "665332906": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "671063303": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "671706427": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "674734128": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "678698219": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 12 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 3 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 8 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "696029452": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "699075597": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 240 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 160 + } + ] + } + }, + "703057617": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 21 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 5 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 60 + }, + { + "id": "-1673693549", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 14 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 4 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 40 + }, + { + "id": "-1673693549", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "709206314": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "2048317869", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + }, + { + "id": "2048317869", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "722955039": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 75 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 50 + } + ] + } + }, + "742745918": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "762289806": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 72 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 48 + } + ] + } + }, + "782422285": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "785728077": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 1 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "794356786": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "794443127": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "795236088": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 18 + }, + { + "id": "-858312878", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "-946369541", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 12 + }, + { + "id": "-858312878", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "-946369541", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "795371088": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 9 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1021495308", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 6 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 1 + }, + { + "id": "-1021495308", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "803222026": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 75 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 50 + } + ] + } + }, + "809199956": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 240 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 160 + } + ] + } + }, + "809942731": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "818877484": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + }, + { + "id": "573926264", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "95950017", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "573926264", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "95950017", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "826309791": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "832133926": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "1414245522", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "1414245522", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "833533164": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 150 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 100 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "835042040": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 6 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 4 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "838308300": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "850280505": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 21 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 14 + } + ] + } + }, + "853471967": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "866332017": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 150 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 100 + } + ] + } + }, + "866889860": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 180 + }, + { + "id": "1414245522", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "1414245522", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "884424049": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + }, + { + "id": "1414245522", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "1414245522", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "888415708": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "895374329": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 105 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 75 + } + ] + }, + "shredder": { + "efficiency": "0.5", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 87 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 62 + } + ] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 70 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 50 + } + ] + } + }, + "915408809": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 9 + }, + { + "id": "95950017", + "probability": 0.3, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 6 + }, + { + "id": "95950017", + "probability": 0.2, + "quantity": 1 + } + ] + } + }, + "926800282": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 42 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 28 + } + ] + } + }, + "935606207": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 30 + }, + { + "id": "176787552", + "probability": 1, + "quantity": 3 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 4 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 8 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 20 + }, + { + "id": "176787552", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 3 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 5 + } + ] + } + }, + "935692442": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "936496778": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "952603248": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "960673498": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "962186730": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "-1557377697", + "probability": 1, + "quantity": 2 + }, + { + "id": "1414245522", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "-1557377697", + "probability": 1, + "quantity": 1 + }, + { + "id": "1414245522", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "963906841": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "968019378": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 21 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 14 + } + ] + } + }, + "968421290": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "975983052": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "980333378": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 9 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 6 + } + ] + } + }, + "988652725": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "999690781": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "1055319033": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 5 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 1 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 3 + } + ] + } + }, + "1058261682": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "1072924620": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 72 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 48 + } + ] + } + }, + "1079279582": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 9 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 6 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 4 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "1081315464": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "2048317869", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + }, + { + "id": "2048317869", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1090916276": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 180 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1099314009": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 24 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 16 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1103488722": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 15 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 10 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "1104520648": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + }, + { + "id": "1882709339", + "probability": 1, + "quantity": 4 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 1 + }, + { + "id": "1882709339", + "probability": 1, + "quantity": 3 + } + ] + } + }, + "1107575710": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 3 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 5 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 2 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "1110385766": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 30 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 11 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 5 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 20 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 8 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "1132603396": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "1142993169": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "1149964039": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1153652756": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "1158340331": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 42 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 28 + } + ] + } + }, + "1158340332": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 72 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 48 + } + ] + } + }, + "1158340334": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "1159991980": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1160881421": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "1168856825": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1414245522", + "probability": 1, + "quantity": 2 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1414245522", + "probability": 1, + "quantity": 1 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 80 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "1171735914": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1177596584": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "479143914", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 80 + }, + { + "id": "479143914", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1181207482": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + }, + { + "id": "-1994909036", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1994909036", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1186655046": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 105 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": "0.5", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 87 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 50 + } + ] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 70 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1199391518": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 6 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 4 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "1205084994": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1205607945": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "1221063409": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 15 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 10 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "1230323789": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 18 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 12 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "1234878710": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "73681876", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 20 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + }, + { + "id": "73681876", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1234880403": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + }, + { + "id": "1414245522", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + }, + { + "id": "1414245522", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "1242482355": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-567909622", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-567909622", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "1242522330": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1248356124": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-592016202", + "probability": 1, + "quantity": 12 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 3 + }, + { + "id": "73681876", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-592016202", + "probability": 1, + "quantity": 8 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "1259919256": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "-2099697608", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 80 + }, + { + "id": "-2099697608", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1263920163": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 21 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 14 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "1266491000": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 3 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 5 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 2 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "1268178466": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "1272430949": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1293102274": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1296788329": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 30 + }, + { + "id": "95950017", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "73681876", + "probability": 0.3, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 20 + }, + { + "id": "95950017", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "73681876", + "probability": 0.2, + "quantity": 1 + } + ] + } + }, + "1305578813": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "1307626005": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 180 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "1315082560": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "2048317869", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + }, + { + "id": "2048317869", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1318558775": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 9 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 2 + }, + { + "id": "1230323789", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 6 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 1 + }, + { + "id": "1230323789", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1324203999": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 18 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 45 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 30 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "1326180354": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 9 + }, + { + "id": "1882709339", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 6 + }, + { + "id": "1882709339", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1327005675": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 180 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 120 + } + ] + } + }, + "1330084809": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "1346158228": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 18 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 12 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1353298668": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 12 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 8 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "1358643074": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 75 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 18 + }, + { + "id": "95950017", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 50 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 12 + }, + { + "id": "95950017", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1361520181": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1366282552": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 12 + }, + { + "id": "1234880403", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 8 + }, + { + "id": "1234880403", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1371909803": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1373240771": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 150 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 100 + } + ] + } + }, + "1373971859": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "95950017", + "probability": 1, + "quantity": 2 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 6 + }, + { + "id": "-1021495308", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "95950017", + "probability": 1, + "quantity": 2 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 4 + }, + { + "id": "-1021495308", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1376065505": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": "0.5", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 75 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 50 + } + ] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1382263453": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 180 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "1414245522", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 20 + }, + { + "id": "1414245522", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1390353317": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "1400460850": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "1401987718": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 3 + }, + { + "id": "-1899491405", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1899491405", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1409529282": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "-1021495308", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + }, + { + "id": "-1021495308", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1413014235": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "1414245162": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "1414245522": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "1424075905": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "1430085198": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "1443579727": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "1451568081": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "1478091698": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 5 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "1488979457": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 36 + }, + { + "id": "1882709339", + "probability": 1, + "quantity": 3 + }, + { + "id": "95950017", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 24 + }, + { + "id": "1882709339", + "probability": 1, + "quantity": 2 + }, + { + "id": "95950017", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1491189398": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 9 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "1882709339", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 6 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "1882709339", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1491753484": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 6 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 4 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "1516985844": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1414245522", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1414245522", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1521286012": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "1523195708": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "73681876", + "probability": 1, + "quantity": 3 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "73681876", + "probability": 1, + "quantity": 2 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 1 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1523403414": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "1524187186": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 300 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 200 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1524980732": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-567909622", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-567909622", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1525520776": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "1534542921": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 20 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "1538126328": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "1540934679": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 180 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + } + ] + } + }, + "1542290441": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "1545779598": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 30 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 3 + }, + { + "id": "176787552", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 20 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 2 + }, + { + "id": "176787552", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1556365900": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "1559779253": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": "0.5", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 50 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "1559915778": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1199391518", + "probability": 1, + "quantity": 3 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1199391518", + "probability": 1, + "quantity": 2 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "1569882109": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1414245522", + "probability": 1, + "quantity": 2 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1414245522", + "probability": 1, + "quantity": 1 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "1575635062": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "1581210395": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "2019042823", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "2019042823", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "1588298435": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 12 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 2 + }, + { + "id": "176787552", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "-1021495308", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 8 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 2 + }, + { + "id": "176787552", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "-1021495308", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1588492232": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "634478325", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 80 + }, + { + "id": "634478325", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1601468620": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "1602646136": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 12 + }, + { + "id": "1540934679", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 8 + }, + { + "id": "1540934679", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1603174987": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 45 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "1608640313": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "1614528785": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 4 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 9 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 3 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 6 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "1619039771": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1623701499": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "1629293099": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1938052175", + "probability": 1, + "quantity": 30 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1938052175", + "probability": 1, + "quantity": 20 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "1638322904": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "95950017", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 90 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "95950017", + "probability": 1, + "quantity": 1 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 60 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "1643667218": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 210 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 140 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "1655650836": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "1882709339", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 80 + }, + { + "id": "1882709339", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "1655979682": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "1658229558": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 9 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + } + ] + } + }, + "1659114910": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 21 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 14 + } + ] + } + }, + "1659447559": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1414245522", + "probability": 1, + "quantity": 2 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 180 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1414245522", + "probability": 1, + "quantity": 1 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + } + ] + } + }, + "1675639563": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 9 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + } + }, + "1686524871": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1696050067": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 3 + }, + { + "id": "479143914", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 80 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "479143914", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1697996440": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1711033574": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1719978075", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1719978075", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "1712070256": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "1714496074": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 9 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "1722154847": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "1723747470": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 30 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 20 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "1729120840": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 180 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + } + ] + } + }, + "1729712564": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1744298439": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 18 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 9 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 12 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + } + ] + } + }, + "1746956556": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 9 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 42 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 28 + } + ] + } + }, + "1751045826": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 24 + }, + { + "id": "1234880403", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 16 + }, + { + "id": "1234880403", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1784406797": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1796682209": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 5 + }, + { + "id": "1230323789", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "-1021495308", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 4 + }, + { + "id": "1230323789", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "-1021495308", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1803831286": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "1814288539": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1719978075", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1719978075", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "1819863051": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "1835946060": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "1840570710": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "2019042823", + "probability": 1, + "quantity": 2 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 300 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 80 + }, + { + "id": "2019042823", + "probability": 1, + "quantity": 2 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 200 + } + ] + } + }, + "1840822026": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 36 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 24 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "1849887541": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "1850456855": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 6 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + }, + { + "id": "1199391518", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 4 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + }, + { + "id": "1199391518", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1856217390": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 18 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 12 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1865253052": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "1874610722": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": "0.5", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 75 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "1877339384": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "1882709339": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 2 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 1 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "1883981798": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "1883981800": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 72 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 48 + } + ] + } + }, + "1883981801": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 42 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 28 + } + ] + } + }, + "1885488976": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 240 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 160 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "1895235349": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "1903654061": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "2019042823", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "2019042823", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1914691295": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + }, + { + "id": "838308300", + "probability": 1, + "quantity": 2 + }, + { + "id": "573926264", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "95950017", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "838308300", + "probability": 1, + "quantity": 1 + }, + { + "id": "573926264", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "95950017", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1946219319": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1948067030": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 180 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + }, + { + "id": "-316250604", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + }, + { + "id": "-316250604", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "1950721418": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "1951603367": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "1953903201": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 12 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 8 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "1965232394": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + }, + { + "id": "1414245522", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "1414245522", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "1973949960": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 20 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "1975934948": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 18 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 3 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 6 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 12 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 2 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 4 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "1983621560": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "1989785143": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "1992974553": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "2005491391": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "2009734114": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "2019042823": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "2023888403": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + }, + { + "id": "73681876", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "2040726127": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + }, + { + "id": "317398316", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + }, + { + "id": "317398316", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "2041899972": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 180 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + }, + { + "id": "-316250604", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + }, + { + "id": "-316250604", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "2068884361": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1234880403", + "probability": 1, + "quantity": 3 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "2070189026": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 20 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "2087678962": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 300 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 200 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "2090395347": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + }, + { + "id": "73681876", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "2100007442": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "2104517339": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "2106561762": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 3 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 2 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "2114754781": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 9 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "-1673693549", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 6 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + }, + { + "id": "-1673693549", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "2126889441": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-1685290200": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 1 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-1036635990": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 3 + }, + { + "id": "-1581843485", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 1 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1581843485", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-727717969": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 1 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-1211166256": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-2124352573": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-2027793839": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "-1615281216": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": "0.5", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 75 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-2139580305": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 6 + }, + { + "id": "1523195708", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "634478325", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 4 + }, + { + "id": "1523195708", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "634478325", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-2072273936": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-702051347": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-1622110948": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 3 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 5 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 2 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-1022661119": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-1211268013": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-1274093662": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-321431890": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 20 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1621539785": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-8312704": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "-1273339005": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 36 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 24 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-1262185308": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 24 + }, + { + "id": "479143914", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 16 + }, + { + "id": "479143914", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-690968985": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-515830359": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-1903165497": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 9 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "-1478094705": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + }, + { + "id": "2019042823", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "2019042823", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1113501606": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "-23994173": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-1549739227": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 12 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 9 + }, + { + "id": "1234880403", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 8 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 6 + }, + { + "id": "1234880403", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1004426654": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "-1266045928": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 24 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 16 + } + ] + } + }, + "-761829530": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-194509282": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-1778897469": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1040518150": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 105 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 75 + } + ] + }, + "shredder": { + "efficiency": "0.5", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 87 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 62 + } + ] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 70 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 50 + } + ] + } + }, + "-1379036069": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "-912398867": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "-1530414568": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1117626326": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-152332823": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 15 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 10 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-1916473915": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 15 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 10 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-770304148": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 15 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 10 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-1501451746": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": "0.5", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 75 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 50 + } + ] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-803263829": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 9 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 36 + }, + { + "id": "1234880403", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 24 + }, + { + "id": "1234880403", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1488398114": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 2 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 1 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-1588628467": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + }, + { + "id": "1523195708", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "-1044468317", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "888415708", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "1523195708", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "-1044468317", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "888415708", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1950721390": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-216999575": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1049881973": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 21 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 14 + } + ] + } + }, + "-1667224349": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 2 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 1 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-129230242": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-209869746": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-151387974": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-113413047": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 42 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 28 + } + ] + } + }, + "-2022172587": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 4 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-502177121": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1112793865": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "-765183617": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 105 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 70 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-1323101799": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1199391518", + "probability": 1, + "quantity": 3 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1199391518", + "probability": 1, + "quantity": 2 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-258574361": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 60 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 40 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-854270928": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "-22883916": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "2048317869", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + }, + { + "id": "2048317869", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1519126340": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-979302481": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "-747743875": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 36 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 24 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-1196547867": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-629028935": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 24 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 16 + } + ] + } + }, + "-784870360": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-1448252298": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1673693549": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 1 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-1557377697": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 7 + } + ] + } + }, + "-75944661": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 45 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "-1321651331": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 3 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 6 + }, + { + "id": "-1581843485", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 4 + }, + { + "id": "-1581843485", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-592016202": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 30 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1581843485", + "probability": 1, + "quantity": 6 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 20 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1581843485", + "probability": 1, + "quantity": 4 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-1230433643": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "-1379835144": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "-1961560162": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 6 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 4 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-1913996738": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1215753368": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 9 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 4 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 60 + }, + { + "id": "-1673693549", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 6 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 3 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 40 + }, + { + "id": "-1673693549", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-936921910": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 15 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 10 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-939424778": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 72 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 48 + } + ] + } + }, + "-196667575": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "-1880231361": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": "0.5", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 50 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 50 + } + ] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-265292885": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1166712463": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1973785141": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 18 + }, + { + "id": "95950017", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 12 + }, + { + "id": "95950017", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1000573653": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "2019042823", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "2019042823", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-52398594": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1719978075", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1719978075", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "-849373693": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1999722522": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 120 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 80 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-148794216": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 180 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-1767794021": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-1043618880": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 60 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 40 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-695124222": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "-1679267738": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 150 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 100 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-656349006": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 18 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 9 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 12 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + } + ] + } + }, + "-1306288356": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-265876753": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1938052175", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1581843485", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1938052175", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1581843485", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-839576748": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 42 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 28 + } + ] + } + }, + "-1252059217": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1696379844": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-1507239837": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1569700847": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-297099594": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 4 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 9 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 3 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 6 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "-2024549027": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 4 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 9 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 3 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 6 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "-1102429027": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1994909036", + "probability": 1, + "quantity": 2 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1994909036", + "probability": 1, + "quantity": 1 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-1778159885": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + }, + { + "id": "-1994909036", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1994909036", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1772746857": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 3 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 5 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 2 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-722629980": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-1773144852": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-691113464": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 1800 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 1200 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-967648160": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 900 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 600 + } + ] + } + }, + "-335089230": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 1800 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 1200 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-985781766": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 900 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 600 + } + ] + } + }, + "-1802083073": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 72 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 48 + } + ] + } + }, + "-1023065463": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 6 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 4 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-1841918730": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 60 + }, + { + "id": "95950017", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 40 + }, + { + "id": "95950017", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1214542497": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 36 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 2 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + }, + { + "id": "176787552", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 24 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 2 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 1 + }, + { + "id": "176787552", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1442559428": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-1663759755": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "-218009552": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 12 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "634478325", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 8 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "634478325", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-246672609": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 72 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 48 + } + ] + } + }, + "-1997543660": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-1989600732": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-143132326": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 150 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 100 + } + ] + } + }, + "-1691396643": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 1 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-44876289": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-2012470695": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 9 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + } + }, + "-697981032": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + }, + { + "id": "2019042823", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "2019042823", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-2001260025": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + }, + { + "id": "479143914", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "479143914", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1824943010": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-567909622", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-567909622", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-1163532624": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 30 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 20 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-979951147": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 15 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 10 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-97459906": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-1330640246": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-850982208": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-778367295": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 24 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 4 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 3 + }, + { + "id": "176787552", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 16 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 3 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 2 + }, + { + "id": "176787552", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-845557339": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-907422733": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 12 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 60 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 8 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 40 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-489848205": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1018587433", + "probability": 1, + "quantity": 12 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1018587433", + "probability": 1, + "quantity": 8 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-1693832478": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": "0.5", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 75 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 75 + } + ] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "-1992717673": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 300 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 360 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 200 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 240 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1100168350": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 300 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "2019042823", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 200 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 80 + }, + { + "id": "2019042823", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-798293154": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-134959124": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 6 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 4 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "-1624770297": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 6 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 4 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "-110921842": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-1469578201": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1882709339", + "probability": 1, + "quantity": 2 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1882709339", + "probability": 1, + "quantity": 1 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-946369541": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1018587433", + "probability": 0.45, + "quantity": 1 + }, + { + "id": "-858312878", + "probability": 0.15, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1018587433", + "probability": 0.3, + "quantity": 1 + }, + { + "id": "-858312878", + "probability": 0.1, + "quantity": 1 + } + ] + } + }, + "-89874794": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "-1812555177": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 24 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 2 + }, + { + "id": "838308300", + "probability": 1, + "quantity": 2 + }, + { + "id": "176787552", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 16 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 1 + }, + { + "id": "838308300", + "probability": 1, + "quantity": 1 + }, + { + "id": "176787552", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-763071910": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 24 + }, + { + "id": "1234880403", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 16 + }, + { + "id": "1234880403", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-2069578888": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 24 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 4 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 4 + }, + { + "id": "176787552", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 16 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 3 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 3 + }, + { + "id": "176787552", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-852563019": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 15 + }, + { + "id": "573926264", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "95950017", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "-1021495308", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 10 + }, + { + "id": "573926264", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "95950017", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "-1021495308", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1966748496": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-1137865085": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 24 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 16 + } + ] + } + }, + "-586784898": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "-1732475823": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 6 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1709878924", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1018587433", + "probability": 1, + "quantity": 4 + }, + { + "id": "1719978075", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "-1423304443": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-493159321": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 42 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 28 + } + ] + } + }, + "-1819233322": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-583379016": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 20 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-746647361": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-194953424": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 30 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 9 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 4 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 20 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 6 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 3 + } + ] + } + }, + "-1199897169": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-148229307": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 150 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 100 + } + ] + } + }, + "-1021495308": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 12 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 8 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-1199897172": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-819720157": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "-1539025626": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 9 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 4 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-1843426638": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "95950017", + "probability": 1, + "quantity": 3 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "95950017", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-20045316": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 75 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 50 + } + ] + } + }, + "-2047081330": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-1123473824": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 15 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 10 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-1405508498": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-2097376851": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-961457160": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-1518883088": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 6 + }, + { + "id": "73681876", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 4 + }, + { + "id": "73681876", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-1506417026": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 36 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 24 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-1832422579": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-1286302544": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-7270019": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 18 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 9 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 12 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + } + ] + } + }, + "-733625651": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 60 + }, + { + "id": "2019042823", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 40 + }, + { + "id": "2019042823", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-2040817543": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 8 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-1779183908": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-379734527": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 18 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 9 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 12 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + } + ] + } + }, + "-1302129395": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 75 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 50 + } + ] + } + }, + "-1442496789": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 300 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 200 + } + ] + } + }, + "-144513264": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-1370759135": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-365097295": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 180 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-2049214035": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 90 + }, + { + "id": "-1021495308", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "479143914", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "-1021495308", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "479143914", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-956706906": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "-1429456799": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "-892718768": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "-986782031": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "2048317869", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + }, + { + "id": "2048317869", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1736356576": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 90 + }, + { + "id": "479143914", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + }, + { + "id": "479143914", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1553999294": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 18 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 9 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 12 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + } + ] + } + }, + "-1160621614": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "-1486461488": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-454370658": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 9 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 8 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 6 + } + ] + } + }, + "-324675402": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "-1861522751": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-1044468317": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "-566907190": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-2002277461": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 12 + }, + { + "id": "1199391518", + "probability": 1, + "quantity": 2 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 8 + }, + { + "id": "1199391518", + "probability": 1, + "quantity": 1 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-699558439": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 12 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + }, + { + "id": "1199391518", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 8 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + }, + { + "id": "1199391518", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-742865266": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "95950017", + "probability": 1, + "quantity": 2 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 90 + }, + { + "id": "-592016202", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "95950017", + "probability": 1, + "quantity": 1 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 60 + }, + { + "id": "-592016202", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-1863063690": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 78 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 52 + } + ] + } + }, + "-458565393": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1985799200": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "-1104881824": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "-173268132": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-173268125": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-173268126": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-173268131": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-173268129": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-173268128": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-262590403": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1882709339", + "probability": 1, + "quantity": 3 + }, + { + "id": "95950017", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1882709339", + "probability": 1, + "quantity": 2 + }, + { + "id": "95950017", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1978999529": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "1199391518", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + }, + { + "id": "1199391518", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1506397857": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "95950017", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + }, + { + "id": "95950017", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1780802565": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1882709339", + "probability": 1, + "quantity": 3 + }, + { + "id": "95950017", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1882709339", + "probability": 1, + "quantity": 2 + }, + { + "id": "95950017", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-384243979": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 3 + }, + { + "id": "95950017", + "probability": 0.1, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 2 + }, + { + "id": "95950017", + "probability": 0.7, + "quantity": 1 + } + ] + } + }, + "-1009359066": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-559599960": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 60 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 40 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-1878475007": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1840822026", + "probability": 1, + "quantity": 3 + }, + { + "id": "-369760990", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "1414245522", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1840822026", + "probability": 1, + "quantity": 2 + }, + { + "id": "-369760990", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "1414245522", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1958316066": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 3 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 5 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "2019042823", + "probability": 1, + "quantity": 2 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-948291630": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-904863145": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 270 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 3 + }, + { + "id": "573926264", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "-1021495308", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 180 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "573926264", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "-1021495308", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1994909036": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 9 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 6 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 80 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-2067472972": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "-2025184684": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "-796583652": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "-1695367501": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "-1536855921": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "-2107018088": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 20 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1368584029": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-1850571427": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-855748505": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 4 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + } + ] + } + }, + "-282113991": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "-2073432256": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-216116642": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "-1073015016": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 90 + }, + { + "id": "996293980", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "996293980", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-769647921": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "-333406828": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 300 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 200 + } + ] + } + }, + "-1754948969": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "-2058362263": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-1018587433", + "probability": 1, + "quantity": 6 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-1018587433", + "probability": 1, + "quantity": 4 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-869598982": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-1293296287": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 300 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 150 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 200 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 100 + } + ] + } + }, + "-692338819": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-369760990": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-132247350": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "2019042823", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 20 + }, + { + "id": "2019042823", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1138208076": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-695978112": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-17123659": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 48 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 120 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 15 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 32 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 80 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 10 + } + ] + } + }, + "-582782051": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "479143914", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + }, + { + "id": "479143914", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-48090175": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 36 + }, + { + "id": "1234880403", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 24 + }, + { + "id": "1234880403", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-842267147": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-555122905": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 18 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 12 + } + ] + } + }, + "-343857907": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-41440462": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 12 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 3 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 8 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1021495308", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-1517740219": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + }, + { + "id": "-1673693549", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + }, + { + "id": "-1673693549", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1800345240": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 7 + } + ] + } + }, + "-1100422738": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "-563624462": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-596876839": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-781014061": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1331212963": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 12 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-932201673", + "probability": 1, + "quantity": 8 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "-1535621066": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 300 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-2099697608", + "probability": 1, + "quantity": 200 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-1583967946": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "-2099697608", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + }, + { + "id": "-2099697608", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-1049172752": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-1421257350": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 180 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1614955425": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-1785231475": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 36 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 24 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-1108136649": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 12 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1381010055", + "probability": 1, + "quantity": 8 + }, + { + "id": "1234880403", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-626174997": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 105 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 75 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": "0.5", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 87 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 62 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 70 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 50 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-295829489": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 15 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 3 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 2 + }, + { + "id": "-629028935", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 10 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + }, + { + "id": "95950017", + "probability": 1, + "quantity": 1 + }, + { + "id": "-629028935", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-1758372725": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 6 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "1230323789", + "probability": 0.6, + "quantity": 1 + }, + { + "id": "-1021495308", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 4 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "1230323789", + "probability": 0.4, + "quantity": 1 + }, + { + "id": "-1021495308", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-97956382": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 600 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 400 + } + ] + } + }, + "-1671551935": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 4 + }, + { + "id": "95950017", + "probability": 0.12, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-265876753", + "probability": 1, + "quantity": 3 + }, + { + "id": "95950017", + "probability": 0.8, + "quantity": 1 + } + ] + } + }, + "-1478445584": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 12 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + }, + { + "id": "-1557377697", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 8 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 4 + }, + { + "id": "-1557377697", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-901370585": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-1647846966": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-885833256": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-280223496": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 18 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 9 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 12 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + } + ] + } + }, + "-99886070": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 15 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 6 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 10 + }, + { + "id": "-946369541", + "probability": 1, + "quantity": 4 + } + ] + } + }, + "-1538109120": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 12 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 9 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 8 + }, + { + "id": "-265876753", + "probability": 1, + "quantity": 6 + } + ] + } + }, + "-1501434104": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-1344017968": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "-463122489": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 150 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 100 + } + ] + } + }, + "-1863559151": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 150 + }, + { + "id": "2019042823", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 100 + }, + { + "id": "2019042823", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-119235651": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-1815301988": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-1284169891": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 150 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 120 + }, + { + "id": "479143914", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 100 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 80 + }, + { + "id": "479143914", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1367281941": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 90 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-132516482": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + }, + { + "id": "73681876", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-1101924344": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 45 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 30 + } + ] + } + }, + "-96256997": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 105 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + }, + { + "id": "69511070", + "probability": 1, + "quantity": 70 + } + ] + } + }, + "-1819763926": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 300 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 6 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1994909036", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 200 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 4 + }, + { + "id": "479143914", + "probability": 1, + "quantity": 2 + }, + { + "id": "-1994909036", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-144417939": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "317398316", + "probability": 1, + "quantity": 1 + } + ] + } + }, + "-1478212975": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "2048317869", + "probability": 0.6, + "quantity": 1 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 4 + }, + { + "id": "2048317869", + "probability": 0.4, + "quantity": 1 + } + ] + } + }, + "-2094954543": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 9 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + }, + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-1336109173": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 210 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 140 + } + ] + } + }, + "-1023374709": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-180129657": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-1234735557": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 8 + }, + { + "id": "-2099697608", + "probability": 1, + "quantity": 3 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 5 + }, + { + "id": "-2099697608", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-92759291": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 90 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + } + ] + } + }, + "-1151332840": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 80 + } + ] + } + }, + "-316250604": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 180 + }, + { + "id": "1414245522", + "probability": 1, + "quantity": 2 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 120 + }, + { + "id": "1414245522", + "probability": 1, + "quantity": 2 + } + ] + } + }, + "-1183726687": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 20 + } + ] + } + }, + "-41896755": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 300 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 12 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 200 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 8 + } + ] + } + }, + "-1607980696": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 600 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 60 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "69511070", + "probability": 1, + "quantity": 400 + }, + { + "id": "317398316", + "probability": 1, + "quantity": 40 + } + ] + } + }, + "-996185386": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 90 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 9 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "-151838493", + "probability": 1, + "quantity": 60 + }, + { + "id": "-858312878", + "probability": 1, + "quantity": 6 + } + ] + } + }, + "-211235948": { + "recycler": { + "efficiency": "0.6", + "yield": [ + { + "id": "1719978075", + "probability": 1, + "quantity": 30 + } + ] + }, + "shredder": { + "efficiency": null, + "yield": [] + }, + "safe-zone-recycler": { + "efficiency": "0.4", + "yield": [ + { + "id": "1719978075", + "probability": 1, + "quantity": 20 + } + ] + } + } } \ No newline at end of file diff --git a/src/staticFiles/rustlabsResearchData.json b/src/staticFiles/rustlabsResearchData.json index 4c752b965..1cf32e13a 100644 --- a/src/staticFiles/rustlabsResearchData.json +++ b/src/staticFiles/rustlabsResearchData.json @@ -7,16 +7,16 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 660 + "scrap": 22, + "totalScrap": 730 } }, "15388698": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 190 + "scrap": 22, + "totalScrap": 210 } }, "21402876": { @@ -27,16 +27,16 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 1100 + "scrap": 150, + "totalScrap": 1320 } }, "60528587": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 345 + "scrap": 150, + "totalScrap": 414 } }, "95950017": { @@ -47,32 +47,32 @@ "researchTable": 125, "workbench": { "type": "1524187186", - "scrap": 125, - "totalScrap": 590 + "scrap": 138, + "totalScrap": 652 } }, "140006625": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 305 + "scrap": 90, + "totalScrap": 366 } }, "143803535": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 850 + "scrap": 90, + "totalScrap": 1020 } }, "170758448": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 470 + "scrap": 150, + "totalScrap": 564 } }, "171931394": { @@ -83,8 +83,8 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 115 + "scrap": 22, + "totalScrap": 127 } }, "196700171": { @@ -103,48 +103,48 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 40 + "scrap": 22, + "totalScrap": 44 } }, "237239288": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 210 + "scrap": 83, + "totalScrap": 232 } }, "254522515": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 275 + "scrap": 90, + "totalScrap": 330 } }, "268565518": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 595 + "scrap": 150, + "totalScrap": 714 } }, "304481038": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 490 + "scrap": 22, + "totalScrap": 542 } }, "352499047": { "researchTable": 125, "workbench": { "type": "1524187186", - "scrap": 125, - "totalScrap": 720 + "scrap": 138, + "totalScrap": 796 } }, "418081930": { @@ -155,24 +155,24 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 1800 + "scrap": 150, + "totalScrap": 2160 } }, "442886268": { "researchTable": 500, "workbench": { "type": "-41896755", - "scrap": 500, - "totalScrap": 2300 + "scrap": 600, + "totalScrap": 2760 } }, "443432036": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 60 + "scrap": 22, + "totalScrap": 66 } }, "479143914": { @@ -183,24 +183,24 @@ "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 170 + "scrap": 24, + "totalScrap": 204 } }, "528668503": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 735 + "scrap": 83, + "totalScrap": 813 } }, "553270375": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 470 + "scrap": 90, + "totalScrap": 564 } }, "559147458": { @@ -223,24 +223,24 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 100 + "scrap": 22, + "totalScrap": 110 } }, "596469572": { "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 115 + "scrap": 24, + "totalScrap": 138 } }, "602628465": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 325 + "scrap": 150, + "totalScrap": 390 } }, "602741290": { @@ -259,8 +259,8 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 155 + "scrap": 22, + "totalScrap": 171 } }, "613961768": { @@ -271,8 +271,8 @@ "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 640 + "scrap": 83, + "totalScrap": 708 } }, "656371026": { @@ -287,8 +287,8 @@ "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 220 + "scrap": 24, + "totalScrap": 264 } }, "656371028": { @@ -299,16 +299,16 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 155 + "scrap": 22, + "totalScrap": 171 } }, "671063303": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 155 + "scrap": 83, + "totalScrap": 171 } }, "671706427": { @@ -323,24 +323,24 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 175 + "scrap": 22, + "totalScrap": 193 } }, "762289806": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 155 + "scrap": 22, + "totalScrap": 171 } }, "785728077": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 565 + "scrap": 83, + "totalScrap": 625 } }, "794356786": { @@ -355,8 +355,8 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 525 + "scrap": 150, + "totalScrap": 630 } }, "803222026": { @@ -367,8 +367,8 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 775 + "scrap": 150, + "totalScrap": 930 } }, "832133926": { @@ -383,72 +383,80 @@ "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 95 + "scrap": 83, + "totalScrap": 105 } }, "866889860": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 295 + "scrap": 22, + "totalScrap": 326 } }, "884424049": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 245 + "scrap": 83, + "totalScrap": 271 } }, "888415708": { "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 155 + "scrap": 24, + "totalScrap": 186 } }, "895374329": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 470 + "scrap": 150, + "totalScrap": 564 } }, "926800282": { "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 220 + "scrap": 24, + "totalScrap": 264 } }, "935692442": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 80 + "scrap": 22, + "totalScrap": 88 } }, "936496778": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 325 + "scrap": 83, + "totalScrap": 359 } }, "952603248": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 695 + "scrap": 83, + "totalScrap": 769 + } + }, + "962186730": { + "researchTable": 75, + "workbench": { + "type": "1524187186", + "scrap": 83, + "totalScrap": 597 } }, "963906841": { @@ -463,8 +471,8 @@ "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 415 + "scrap": 24, + "totalScrap": 498 } }, "1072924620": { @@ -479,8 +487,8 @@ "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 200 + "scrap": 90, + "totalScrap": 240 } }, "1099314009": { @@ -491,8 +499,8 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 925 + "scrap": 150, + "totalScrap": 1200 } }, "1110385766": { @@ -507,32 +515,32 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 135 + "scrap": 22, + "totalScrap": 149 } }, "1149964039": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 470 + "scrap": 90, + "totalScrap": 564 } }, "1153652756": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 265 + "scrap": 83, + "totalScrap": 293 } }, "1158340331": { "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 220 + "scrap": 24, + "totalScrap": 264 } }, "1158340332": { @@ -559,40 +567,40 @@ "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 190 + "scrap": 83, + "totalScrap": 210 } }, "1171735914": { "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 320 + "scrap": 24, + "totalScrap": 384 } }, "1177596584": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 595 + "scrap": 150, + "totalScrap": 714 } }, "1181207482": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 475 + "scrap": 150, + "totalScrap": 570 } }, "1186655046": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 595 + "scrap": 150, + "totalScrap": 714 } }, "1199391518": { @@ -611,8 +619,8 @@ "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 250 + "scrap": 83, + "totalScrap": 276 } }, "1234880403": { @@ -631,40 +639,40 @@ "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 175 + "scrap": 83, + "totalScrap": 193 } }, "1263920163": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 1425 + "scrap": 90, + "totalScrap": 1710 } }, "1266491000": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 125 + "scrap": 150, + "totalScrap": 150 } }, "1293102274": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 250 + "scrap": 22, + "totalScrap": 276 } }, "1296788329": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 2425 + "scrap": 150, + "totalScrap": 2460 } }, "1318558775": { @@ -679,8 +687,8 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 170 + "scrap": 22, + "totalScrap": 188 } }, "1330084809": { @@ -699,48 +707,48 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 175 + "scrap": 22, + "totalScrap": 193 } }, "1371909803": { "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 340 + "scrap": 24, + "totalScrap": 408 } }, "1373240771": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 170 + "scrap": 22, + "totalScrap": 188 } }, "1373971859": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 975 + "scrap": 150, + "totalScrap": 1170 } }, "1376065505": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 345 + "scrap": 150, + "totalScrap": 414 } }, "1382263453": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 370 + "scrap": 83, + "totalScrap": 409 } }, "1401987718": { @@ -751,8 +759,8 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 40 + "scrap": 22, + "totalScrap": 44 } }, "1414245162": { @@ -763,16 +771,16 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 20 + "scrap": 22, + "totalScrap": 22 } }, "1430085198": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 545 + "scrap": 90, + "totalScrap": 654 } }, "1443579727": { @@ -783,24 +791,24 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 250 + "scrap": 22, + "totalScrap": 276 } }, "1478091698": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 1225 + "scrap": 150, + "totalScrap": 1470 } }, "1491189398": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 95 + "scrap": 22, + "totalScrap": 105 } }, "1516985844": { @@ -815,16 +823,16 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 80 + "scrap": 22, + "totalScrap": 88 } }, "1538126328": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 195 + "scrap": 22, + "totalScrap": 215 } }, "1540934679": { @@ -843,16 +851,16 @@ "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 850 + "scrap": 90, + "totalScrap": 1020 } }, "1559779253": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 345 + "scrap": 150, + "totalScrap": 414 } }, "1569882109": { @@ -863,8 +871,8 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 60 + "scrap": 22, + "totalScrap": 66 } }, "1588298435": { @@ -879,8 +887,8 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 355 + "scrap": 150, + "totalScrap": 426 } }, "1602646136": { @@ -891,24 +899,32 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 20 + "scrap": 22, + "totalScrap": 22 + } + }, + "1619039771": { + "researchTable": 75, + "workbench": { + "type": "-41896755", + "scrap": 90, + "totalScrap": 450 } }, "1638322904": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 2425 + "scrap": 150, + "totalScrap": 2910 } }, "1655650836": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 470 + "scrap": 150, + "totalScrap": 564 } }, "1658229558": { @@ -923,16 +939,16 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 40 + "scrap": 22, + "totalScrap": 44 } }, "1696050067": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 200 + "scrap": 150, + "totalScrap": 240 } }, "1711033574": { @@ -963,16 +979,16 @@ "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 200 + "scrap": 90, + "totalScrap": 240 } }, "1796682209": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 1350 + "scrap": 150, + "totalScrap": 1620 } }, "1814288539": { @@ -983,24 +999,24 @@ "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 715 + "scrap": 83, + "totalScrap": 791 } }, "1849887541": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 150 + "scrap": 90, + "totalScrap": 180 } }, "1850456855": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 295 + "scrap": 90, + "totalScrap": 354 } }, "1874610722": { @@ -1035,8 +1051,8 @@ "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 220 + "scrap": 24, + "totalScrap": 264 } }, "1946219319": { @@ -1047,24 +1063,24 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 600 + "scrap": 150, + "totalScrap": 810 } }, "1950721418": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 155 + "scrap": 83, + "totalScrap": 171 } }, "1951603367": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 20 + "scrap": 22, + "totalScrap": 22 } }, "1965232394": { @@ -1079,16 +1095,16 @@ "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 400 + "scrap": 83, + "totalScrap": 442 } }, "1989785143": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 420 + "scrap": 90, + "totalScrap": 504 } }, "1992974553": { @@ -1099,56 +1115,56 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 1800 + "scrap": 150, + "totalScrap": 2160 } }, "2023888403": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 75 + "scrap": 90, + "totalScrap": 90 } }, "2040726127": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 545 + "scrap": 83, + "totalScrap": 603 } }, "2041899972": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 600 + "scrap": 150, + "totalScrap": 720 } }, "2087678962": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 320 + "scrap": 90, + "totalScrap": 384 } }, "2090395347": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 115 + "scrap": 83, + "totalScrap": 127 } }, "2100007442": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 175 + "scrap": 22, + "totalScrap": 193 } }, "2114754781": { @@ -1159,32 +1175,32 @@ "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 400 + "scrap": 90, + "totalScrap": 480 } }, "-1036635990": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 550 + "scrap": 90, + "totalScrap": 660 } }, "-727717969": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 475 + "scrap": 90, + "totalScrap": 570 } }, "-1211166256": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 1550 + "scrap": 150, + "totalScrap": 1860 } }, "-2124352573": { @@ -1203,8 +1219,8 @@ "researchTable": 500, "workbench": { "type": "-41896755", - "scrap": 500, - "totalScrap": 805 + "scrap": 600, + "totalScrap": 966 } }, "-2072273936": { @@ -1215,24 +1231,24 @@ "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 230 + "scrap": 83, + "totalScrap": 254 } }, "-1262185308": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 620 + "scrap": 83, + "totalScrap": 686 } }, "-690968985": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 210 + "scrap": 22, + "totalScrap": 232 } }, "-1903165497": { @@ -1243,8 +1259,8 @@ "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 200 + "scrap": 90, + "totalScrap": 240 } }, "-761829530": { @@ -1255,40 +1271,40 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 195 + "scrap": 22, + "totalScrap": 215 } }, "-1040518150": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 470 + "scrap": 150, + "totalScrap": 564 } }, "-1117626326": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 230 + "scrap": 22, + "totalScrap": 254 } }, "-1501451746": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 345 + "scrap": 150, + "totalScrap": 414 } }, "-803263829": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 275 + "scrap": 90, + "totalScrap": 330 } }, "-1488398114": { @@ -1299,72 +1315,72 @@ "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 230 + "scrap": 90, + "totalScrap": 276 } }, "-1950721390": { "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 345 + "scrap": 24, + "totalScrap": 414 } }, "-216999575": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 300 + "scrap": 90, + "totalScrap": 360 } }, "-502177121": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 230 + "scrap": 83, + "totalScrap": 254 } }, "-765183617": { "researchTable": 125, "workbench": { "type": "1524187186", - "scrap": 125, - "totalScrap": 595 + "scrap": 138, + "totalScrap": 658 } }, "-1519126340": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 455 + "scrap": 83, + "totalScrap": 503 } }, "-1196547867": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 395 + "scrap": 90, + "totalScrap": 474 } }, "-784870360": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 210 + "scrap": 83, + "totalScrap": 232 } }, "-1448252298": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 155 + "scrap": 22, + "totalScrap": 171 } }, "-1673693549": { @@ -1395,24 +1411,24 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 1100 + "scrap": 150, + "totalScrap": 1320 } }, "-936921910": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 925 + "scrap": 90, + "totalScrap": 1110 } }, "-939424778": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 155 + "scrap": 22, + "totalScrap": 171 } }, "-196667575": { @@ -1423,24 +1439,24 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 345 + "scrap": 150, + "totalScrap": 414 } }, "-265292885": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 80 + "scrap": 22, + "totalScrap": 88 } }, "-1166712463": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 100 + "scrap": 22, + "totalScrap": 110 } }, "-1999722522": { @@ -1451,44 +1467,60 @@ "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 515 + "scrap": 90, + "totalScrap": 618 + } + }, + "-1767794021": { + "researchTable": 125, + "workbench": { + "type": "-41896755", + "scrap": 150, + "totalScrap": 2310 } }, "-265876753": { "researchTable": 10, "workbench": null }, + "-839576748": { + "researchTable": 75, + "workbench": { + "type": "-41896755", + "scrap": 90, + "totalScrap": 660 + } + }, "-1252059217": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 150 + "scrap": 83, + "totalScrap": 166 } }, "-1507239837": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 245 + "scrap": 90, + "totalScrap": 294 } }, "-1102429027": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 475 + "scrap": 150, + "totalScrap": 570 } }, "-1778159885": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 475 + "scrap": 150, + "totalScrap": 570 } }, "-1773144852": { @@ -1499,24 +1531,24 @@ "researchTable": 500, "workbench": { "type": "-41896755", - "scrap": 500, - "totalScrap": 1950 + "scrap": 600, + "totalScrap": 2430 } }, "-967648160": { "researchTable": 500, "workbench": { "type": "-41896755", - "scrap": 500, - "totalScrap": 1450 + "scrap": 600, + "totalScrap": 1830 } }, "-335089230": { "researchTable": 125, "workbench": { "type": "1524187186", - "scrap": 125, - "totalScrap": 715 + "scrap": 138, + "totalScrap": 790 } }, "-1802083073": { @@ -1535,8 +1567,8 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 2425 + "scrap": 150, + "totalScrap": 2910 } }, "-1214542497": { @@ -1551,64 +1583,64 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 650 + "scrap": 150, + "totalScrap": 780 } }, "-218009552": { - "researchTable": 500, + "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 500, - "totalScrap": 2300 + "scrap": 150, + "totalScrap": 2310 } }, "-1989600732": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 150 + "scrap": 83, + "totalScrap": 166 } }, "-143132326": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 360 + "scrap": 83, + "totalScrap": 398 } }, "-1691396643": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 1100 + "scrap": 150, + "totalScrap": 1320 } }, "-44876289": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 250 + "scrap": 22, + "totalScrap": 276 } }, "-2012470695": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 60 + "scrap": 22, + "totalScrap": 66 } }, "-1163532624": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 230 + "scrap": 22, + "totalScrap": 254 } }, "-850982208": { @@ -1619,48 +1651,48 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 470 + "scrap": 150, + "totalScrap": 564 } }, "-1992717673": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 800 + "scrap": 150, + "totalScrap": 1050 } }, "-1100168350": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 875 + "scrap": 90, + "totalScrap": 1140 } }, "-798293154": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 470 + "scrap": 90, + "totalScrap": 564 } }, "-110921842": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 675 + "scrap": 90, + "totalScrap": 900 } }, "-1469578201": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 75 + "scrap": 90, + "totalScrap": 90 } }, "-946369541": { @@ -1675,8 +1707,8 @@ "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 320 + "scrap": 83, + "totalScrap": 354 } }, "-1137865085": { @@ -1687,16 +1719,16 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 60 + "scrap": 22, + "totalScrap": 66 } }, "-493159321": { "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 220 + "scrap": 24, + "totalScrap": 264 } }, "-1819233322": { @@ -1707,8 +1739,8 @@ "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 225 + "scrap": 90, + "totalScrap": 270 } }, "-194953424": { @@ -1723,8 +1755,8 @@ "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 345 + "scrap": 24, + "totalScrap": 414 } }, "-148229307": { @@ -1739,32 +1771,32 @@ "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 365 + "scrap": 24, + "totalScrap": 438 } }, "-819720157": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 485 + "scrap": 83, + "totalScrap": 536 } }, "-1539025626": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 80 + "scrap": 22, + "totalScrap": 88 } }, "-1405508498": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 1225 + "scrap": 150, + "totalScrap": 1470 } }, "-2097376851": { @@ -1775,96 +1807,104 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 600 + "scrap": 150, + "totalScrap": 720 } }, "-1286302544": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 230 + "scrap": 22, + "totalScrap": 254 } }, "-1302129395": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 150 + "scrap": 83, + "totalScrap": 166 } }, "-365097295": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 225 + "scrap": 90, + "totalScrap": 270 } }, "-2049214035": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 175 + "scrap": 22, + "totalScrap": 193 } }, "-956706906": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 400 + "scrap": 90, + "totalScrap": 480 } }, "-1429456799": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 475 + "scrap": 90, + "totalScrap": 570 + } + }, + "-892718768": { + "researchTable": 20, + "workbench": { + "type": "1524187186", + "scrap": 22, + "totalScrap": 193 } }, "-1736356576": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 215 + "scrap": 22, + "totalScrap": 237 } }, "-1044468317": { "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 135 + "scrap": 24, + "totalScrap": 162 } }, "-566907190": { "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 95 + "scrap": 24, + "totalScrap": 114 } }, "-2002277461": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 350 + "scrap": 90, + "totalScrap": 420 } }, "-699558439": { "researchTable": 20, "workbench": { "type": "-41896755", - "scrap": 20, - "totalScrap": 220 + "scrap": 24, + "totalScrap": 264 } }, "-742865266": { @@ -1879,88 +1919,96 @@ "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 190 + "scrap": 83, + "totalScrap": 210 } }, "-1985799200": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 190 + "scrap": 22, + "totalScrap": 210 } }, "-1104881824": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 285 + "scrap": 22, + "totalScrap": 315 } }, "-262590403": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 200 + "scrap": 150, + "totalScrap": 240 } }, "-1978999529": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 395 + "scrap": 83, + "totalScrap": 437 } }, "-1506397857": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 75 + "scrap": 83, + "totalScrap": 83 } }, "-1780802565": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 325 + "scrap": 150, + "totalScrap": 390 } }, "-384243979": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 2375 + "scrap": 90, + "totalScrap": 2850 } }, "-559599960": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 210 + "scrap": 22, + "totalScrap": 232 } }, "-1878475007": { "researchTable": 125, "workbench": { "type": "1524187186", - "scrap": 125, - "totalScrap": 840 + "scrap": 138, + "totalScrap": 929 + } + }, + "-948291630": { + "researchTable": 75, + "workbench": { + "type": "-41896755", + "scrap": 90, + "totalScrap": 654 } }, "-904863145": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 1675 + "scrap": 150, + "totalScrap": 2010 } }, "-2067472972": { @@ -1971,24 +2019,24 @@ "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 115 + "scrap": 83, + "totalScrap": 127 } }, "-1695367501": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 135 + "scrap": 22, + "totalScrap": 149 } }, "-1850571427": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 795 + "scrap": 83, + "totalScrap": 879 } }, "-855748505": { @@ -2003,24 +2051,24 @@ "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 950 + "scrap": 90, + "totalScrap": 1230 } }, "-692338819": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 40 + "scrap": 22, + "totalScrap": 44 } }, "-132247350": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 40 + "scrap": 22, + "totalScrap": 44 } }, "-1138208076": { @@ -2031,72 +2079,72 @@ "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 395 + "scrap": 90, + "totalScrap": 474 } }, "-582782051": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 445 + "scrap": 83, + "totalScrap": 514 } }, "-48090175": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 100 + "scrap": 22, + "totalScrap": 110 } }, "-1517740219": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 135 + "scrap": 22, + "totalScrap": 149 } }, "-1800345240": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 155 + "scrap": 22, + "totalScrap": 171 } }, "-1100422738": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 380 + "scrap": 22, + "totalScrap": 420 } }, "-563624462": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 135 + "scrap": 22, + "totalScrap": 149 } }, "-781014061": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 80 + "scrap": 22, + "totalScrap": 88 } }, "-1535621066": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 250 + "scrap": 22, + "totalScrap": 276 } }, "-1583967946": { @@ -2107,32 +2155,32 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 135 + "scrap": 22, + "totalScrap": 149 } }, "-1614955425": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 440 + "scrap": 90, + "totalScrap": 528 } }, "-626174997": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 345 + "scrap": 150, + "totalScrap": 414 } }, "-1758372725": { "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 1350 + "scrap": 150, + "totalScrap": 1620 } }, "-97956382": { @@ -2143,48 +2191,48 @@ "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 2500 + "scrap": 90, + "totalScrap": 3000 } }, "-1478445584": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 170 + "scrap": 22, + "totalScrap": 188 } }, "-463122489": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 465 + "scrap": 83, + "totalScrap": 514 } }, "-1863559151": { "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 40 + "scrap": 22, + "totalScrap": 44 } }, "-1284169891": { "researchTable": 75, "workbench": { "type": "-41896755", - "scrap": 75, - "totalScrap": 300 + "scrap": 90, + "totalScrap": 360 } }, "-1367281941": { "researchTable": 75, "workbench": { "type": "1524187186", - "scrap": 75, - "totalScrap": 470 + "scrap": 83, + "totalScrap": 520 } }, "-132516482": { @@ -2199,8 +2247,8 @@ "researchTable": 125, "workbench": { "type": "-41896755", - "scrap": 125, - "totalScrap": 670 + "scrap": 150, + "totalScrap": 804 } }, "-1478212975": { @@ -2219,8 +2267,8 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 410 + "scrap": 22, + "totalScrap": 453 } }, "-180129657": { @@ -2235,16 +2283,16 @@ "researchTable": 20, "workbench": { "type": "1524187186", - "scrap": 20, - "totalScrap": 390 + "scrap": 22, + "totalScrap": 431 } }, "-316250604": { "researchTable": 125, "workbench": { "type": "1524187186", - "scrap": 125, - "totalScrap": 275 + "scrap": 138, + "totalScrap": 304 } }, "-1183726687": { diff --git a/src/staticFiles/rustlabsStackData.json b/src/staticFiles/rustlabsStackData.json index d82073c89..15a89d7e6 100644 --- a/src/staticFiles/rustlabsStackData.json +++ b/src/staticFiles/rustlabsStackData.json @@ -338,6 +338,9 @@ "699075597": { "quantity": "1" }, + "703057617": { + "quantity": "1" + }, "709206314": { "quantity": "1" }, @@ -452,6 +455,9 @@ "926800282": { "quantity": "15" }, + "935606207": { + "quantity": "1" + }, "935692442": { "quantity": "1" }, @@ -464,6 +470,9 @@ "960673498": { "quantity": "1" }, + "962186730": { + "quantity": "1" + }, "963906841": { "quantity": "1" }, @@ -857,6 +866,9 @@ "1614528785": { "quantity": "1" }, + "1619039771": { + "quantity": "10" + }, "1623701499": { "quantity": "10" }, @@ -948,7 +960,7 @@ "quantity": "10" }, "1770475779": { - "quantity": "20" + "quantity": "25" }, "1771755747": { "quantity": "20" @@ -1508,6 +1520,9 @@ "-148794216": { "quantity": "1" }, + "-1767794021": { + "quantity": "1" + }, "-1043618880": { "quantity": "1" }, @@ -1545,7 +1560,7 @@ "quantity": "20" }, "-568419968": { - "quantity": "20" + "quantity": "25" }, "-265876753": { "quantity": "1000" @@ -1553,6 +1568,9 @@ "-888153050": { "quantity": "1000" }, + "-839576748": { + "quantity": "1" + }, "-1252059217": { "quantity": "1" }, @@ -1886,6 +1904,9 @@ "-1429456799": { "quantity": "10" }, + "-892718768": { + "quantity": "1" + }, "-1130709577": { "quantity": "1" }, @@ -2036,6 +2057,9 @@ "-932201673": { "quantity": "1000" }, + "-948291630": { + "quantity": "10" + }, "-904863145": { "quantity": "1" }, @@ -2249,6 +2273,9 @@ "-1538109120": { "quantity": "20" }, + "-1501434104": { + "quantity": "10" + }, "-1344017968": { "quantity": "1" }, diff --git a/src/structures/Battlemetrics.js b/src/structures/Battlemetrics.js index cbfca1a7d..47e35f85c 100644 --- a/src/structures/Battlemetrics.js +++ b/src/structures/Battlemetrics.js @@ -489,6 +489,7 @@ class Battlemetrics { return false; } + this.lastUpdateSuccessful = true; this.data = data; const time = new Date().toISOString(); diff --git a/src/structures/DiscordBot.js b/src/structures/DiscordBot.js index 88f417e49..19e50e123 100644 --- a/src/structures/DiscordBot.js +++ b/src/structures/DiscordBot.js @@ -254,7 +254,7 @@ class DiscordBot extends Discord.Client { for (const [steamId, content] of Object.entries(credentials)) { if (steamId === 'hoster') continue; - if (!(memberIds.includes(content.discordUserId))) { + if (!(memberIds.includes(content.discord_user_id))) { steamIdRemoveCredentials.push(steamId); } } diff --git a/src/structures/MapMarkers.js b/src/structures/MapMarkers.js index 9b6118d00..eb9034c77 100644 --- a/src/structures/MapMarkers.js +++ b/src/structures/MapMarkers.js @@ -37,7 +37,8 @@ class MapMarkers { CargoShip: 5, Crate: 6, GenericRadius: 7, - PatrolHelicopter: 8 + PatrolHelicopter: 8, + TravelingVendor: 9 } this._players = []; @@ -46,6 +47,7 @@ class MapMarkers { this._cargoShips = []; this._genericRadiuses = []; this._patrolHelicopters = []; + this._travelingVendors = []; /* Timers */ this.cargoShipEgressTimers = new Object(); @@ -61,6 +63,7 @@ class MapMarkers { this.timeSinceLargeOilRigWasTriggered = null; this.timeSincePatrolHelicopterWasOnMap = null; this.timeSincePatrolHelicopterWasDestroyed = null; + this.timeSinceTravelingVendorWasOnMap = null; /* Event location */ this.patrolHelicopterDestroyedLocation = null; @@ -92,6 +95,8 @@ class MapMarkers { set genericRadiuses(genericRadiuses) { this._genericRadiuses = genericRadiuses; } get patrolHelicopters() { return this._patrolHelicopters; } set patrolHelicopters(patrolHelicopters) { this._patrolHelicopters = patrolHelicopters; } + get travelingVendors() { return this._travelingVendors; } + set travelingVendors(travelingVendors) { this._travelingVendors = travelingVendors; } getType(type) { if (!Object.values(this.types).includes(type)) { @@ -123,6 +128,10 @@ class MapMarkers { return this.patrolHelicopters; } break; + case this.types.TravelingVendor: { + return this.travelingVendors; + } break; + default: { return null; } break; @@ -254,6 +263,7 @@ class MapMarkers { this.updateCH47s(mapMarkers); this.updateVendingMachines(mapMarkers); this.updateGenericRadiuses(mapMarkers); + this.updateTravelingVendors(mapMarkers); } updatePlayers(mapMarkers) { @@ -327,6 +337,7 @@ class MapMarkers { vendingMachine.id = marker.id; vendingMachine.location = pos; + vendingMachine.sellOrders = marker.sellOrders; } } @@ -485,6 +496,7 @@ class MapMarkers { marker.location = pos; marker.onItsWayOut = false; + marker.isDocked = false; /* Offset that is used to determine if CargoShip just spawned */ let offset = 4 * Map.gridDiameter; @@ -542,6 +554,46 @@ class MapMarkers { this.rustplus.cargoShipTracers[marker.id].push({ x: marker.x, y: marker.y }); + const harbors = []; + for (const monument of this.rustplus.map.monuments) { + if (/harbor/.test(monument.token)) { + harbors.push({ x: monument.x, y: monument.y }) + } + } + + /* If CargoShip is docked at Harbor */ + if (!this.rustplus.isFirstPoll && !cargoShip.isDocked) { + for (const harbor of harbors) { + if (Map.getDistance(marker.x, marker.y, harbor.x, harbor.y) <= Constants.HARBOR_DOCK_DISTANCE) { + if (marker.x === cargoShip.x && marker.y === cargoShip.y) { + /* CargoShip is now docked. */ + const harborLocation = Map.getPos(harbor.x, harbor.y, mapSize, this.rustplus); + cargoShip.isDocked = true; + this.rustplus.sendEvent( + this.rustplus.notificationSettings.cargoShipDockingAtHarborSetting, + this.client.intlGet(this.rustplus.guildId, 'cargoShipDockingAtHarbor', + { location: harborLocation.location }), 'cargo', Constants.COLOR_CARGO_SHIP_DOCKED + ); + } + } + } + } + else if (!this.rustplus.isFirstPoll && cargoShip.isDocked) { + for (const harbor of harbors) { + if (Map.getDistance(marker.x, marker.y, harbor.x, harbor.y) <= Constants.HARBOR_DOCK_DISTANCE) { + if (marker.x !== cargoShip.x || marker.y !== cargoShip.y) { + const harborLocation = Map.getPos(harbor.x, harbor.y, mapSize, this.rustplus); + cargoShip.isDocked = false; + this.rustplus.sendEvent( + this.rustplus.notificationSettings.cargoShipDockingAtHarborSetting, + this.client.intlGet(this.rustplus.guildId, 'cargoShipLeftHarbor', + { location: harborLocation.location }), 'cargo', Constants.COLOR_CARGO_SHIP_DOCKED + ); + } + } + } + } + cargoShip.x = marker.x; cargoShip.y = marker.y; cargoShip.location = pos; @@ -660,6 +712,75 @@ class MapMarkers { } } + updateTravelingVendors(mapMarkers) { + let newMarkers = this.getNewMarkersOfTypeId(this.types.TravelingVendor, mapMarkers.markers); + let leftMarkers = this.getLeftMarkersOfTypeId(this.types.TravelingVendor, mapMarkers.markers); + let remainingMarkers = this.getRemainingMarkersOfTypeId(this.types.TravelingVendor, mapMarkers.markers); + + /* TravelingVendor markers that are new. */ + for (let marker of newMarkers) { + let mapSize = this.rustplus.info.correctedMapSize; + let pos = Map.getPos(marker.x, marker.y, mapSize, this.rustplus); + + marker.location = pos; + marker.isHalted = false; + + this.rustplus.sendEvent( + this.rustplus.notificationSettings.travelingVendorDetectedSetting, + this.client.intlGet(this.rustplus.guildId, 'travelingVendorSpawnedAt', { location: pos.string }), + 'vendor', + Constants.COLOR_TRAVELING_VENDOR_LOCATED_AT); + + this.travelingVendors.push(marker); + } + + /* TravelingVendor markers that have left. */ + for (let marker of leftMarkers) { + this.rustplus.sendEvent( + this.rustplus.notificationSettings.travelingVendorLeftSetting, + this.client.intlGet(this.rustplus.guildId, 'travelingVendorLeftMap', { location: marker.location.string }), + 'vendor', + Constants.COLOR_TRAVELING_VENDOR_LEFT_MAP); + + this.timeSinceTravelingVendorWasOnMap = new Date(); + + this.travelingVendors = this.travelingVendors.filter(e => e.id !== marker.id); + } + + /* TravelingVendor markers that still remains. */ + for (let marker of remainingMarkers) { + let mapSize = this.rustplus.info.correctedMapSize; + let pos = Map.getPos(marker.x, marker.y, mapSize, this.rustplus); + let travelingVendor = this.getMarkerByTypeId(this.types.TravelingVendor, marker.id); + + /* If TravelingVendor is halted */ + if (!this.rustplus.isFirstPoll && !travelingVendor.isHalted) { + if (marker.x === travelingVendor.x && marker.y === travelingVendor.y) { + travelingVendor.isHalted = true; + this.rustplus.sendEvent( + this.rustplus.notificationSettings.travelingVendorHaltedSetting, + this.client.intlGet(this.rustplus.guildId, 'travelingVendorHaltedAt', { location: pos.string }), + 'vendor', + Constants.COLOR_TRAVELING_VENDOR_HALTED); + } + } + /* If TravelingVendor is moving again */ + else if (!this.rustplus.isFirstPoll && travelingVendor.isHalted) { + if (marker.x !== travelingVendor.x || marker.y !== travelingVendor.y) { + travelingVendor.isHalted = false; + this.rustplus.sendEvent( + this.rustplus.notificationSettings.travelingVendorHaltedSetting, + this.client.intlGet(this.rustplus.guildId, 'travelingVendorResumedAt', { location: pos.string }), + 'vendor', + Constants.COLOR_TRAVELING_VENDOR_MOVING); + } + } + travelingVendor.x = marker.x; + travelingVendor.y = marker.y; + travelingVendor.location = pos; + } + } + /* Timer notification functions */ @@ -743,6 +864,7 @@ class MapMarkers { this.cargoShips = []; this.genericRadiuses = []; this.patrolHelicopters = []; + this.travelingVendors = []; for (const [id, timer] of Object.entries(this.cargoShipEgressTimers)) { timer.stop(); @@ -763,6 +885,7 @@ class MapMarkers { this.timeSinceLargeOilRigWasTriggered = null; this.timeSincePatrolHelicopterWasOnMap = null; this.timeSincePatrolHelicopterWasDestroyed = null; + this.timeSinceTravelingVendorWasOnMap = null; this.patrolHelicopterDestroyedLocation = null; diff --git a/src/structures/RustLabs.js b/src/structures/RustLabs.js index 503bdc9a4..cf2a2bb6d 100644 --- a/src/structures/RustLabs.js +++ b/src/structures/RustLabs.js @@ -342,8 +342,8 @@ class RustLabs { /** * Get recycle data from an array of items. * @param {array} items The array of items (every item include itemId, quantity, itemIsBlueprint). - * @return {array} An array of the output of recycling the items (every item include itemId, quantity, - * itemIsBlueprint). + * @return {Object} An object with recycler, shredder and safe-zone-recycler recycle data where + * the all recycled items have (itemId, quantity, itemIsBlueprint). */ getRecycleDataFromArray(items) { /* Remove element duplicates */ @@ -360,54 +360,63 @@ class RustLabs { } items = mergedItems.slice(); - let recycleData = items.slice(); - while (true) { - let noMoreIterations = true; + const recycleData = new Object(); + recycleData['recycler'] = []; + recycleData['shredder'] = []; + recycleData['safe-zone-recycler'] = []; - const expandedItems = []; - for (const item of recycleData) { - if (!this.hasRecycleDetails(item.itemId)) { - expandedItems.push(item); - continue; - } + for (const recyclerType in recycleData) { + let recycledItems = items.slice(); + while (true) { + let noMoreIterations = true; - /* Can the item be recycled further? */ - if (this.recycleData[item.itemId].length > 0 && !item.itemIsBlueprint && - !IGNORED_RECYCLE_ITEMS.includes(item.itemId)) { - noMoreIterations = false; - for (const recycleItem of this.recycleData[item.itemId]) { - for (let i = 0; i < item.quantity; i++) { - if (recycleItem.probability < 1 && Math.random() * 1 > recycleItem.probability) continue; - - const found = expandedItems.find(e => e.itemId === recycleItem.id); - if (found === undefined) { - expandedItems.push({ - itemId: recycleItem.id, - quantity: recycleItem.quantity, - itemIsBlueprint: false - }); - } - else { - found.quantity += recycleItem.quantity; + const expandedItems = []; + for (const item of recycledItems) { + if (!this.hasRecycleDetails(item.itemId)) { + expandedItems.push(item); + continue; + } + + /* Can the item be recycled further? */ + if (this.recycleData[item.itemId][recyclerType]['yield'].length > 0 && !item.itemIsBlueprint && + !IGNORED_RECYCLE_ITEMS.includes(item.itemId)) { + noMoreIterations = false; + for (const recycleItem of this.recycleData[item.itemId][recyclerType]['yield']) { + for (let i = 0; i < item.quantity; i++) { + if (recycleItem.probability < 1 && Math.random() * 1 > recycleItem.probability) continue; + + const found = expandedItems.find(e => e.itemId === recycleItem.id); + if (found === undefined) { + expandedItems.push({ + itemId: recycleItem.id, + quantity: recycleItem.quantity, + itemIsBlueprint: false + }); + } + else { + found.quantity += recycleItem.quantity; + } } } } - } - else { - const found = expandedItems.find(e => e.itemId === item.itemId && - e.itemIsBlueprint === item.itemIsBlueprint); - if (found === undefined) { - expandedItems.push(item); - } else { - found.quantity += item.quantity; + const found = expandedItems.find(e => e.itemId === item.itemId && + e.itemIsBlueprint === item.itemIsBlueprint); + if (found === undefined) { + expandedItems.push(item); + } + else { + found.quantity += item.quantity; + } } } - } - recycleData = expandedItems.slice(); + recycledItems = expandedItems.slice(); + + if (noMoreIterations) break; + } - if (noMoreIterations) break; + recycleData[recyclerType] = recycledItems; } return recycleData; diff --git a/src/structures/RustPlus.js b/src/structures/RustPlus.js index 6c9d82536..39820fa6a 100644 --- a/src/structures/RustPlus.js +++ b/src/structures/RustPlus.js @@ -2194,7 +2194,7 @@ class RustPlus extends RustPlusLib { ]); let str = `${itemName}: `; - for (const item of recycleData) { + for (const item of recycleData['recycler']) { str += `${Client.client.items.getName(item.itemId)} x${item.quantity}, `; } str = str.slice(0, -2); @@ -2280,7 +2280,7 @@ class RustPlus extends RustPlusLib { }); } - const discordUserId = credentials[player.steamId].discordUserId; + const discordUserId = credentials[player.steamId].discord_user_id; const user = await DiscordTools.getUserById(this.guildId, discordUserId); const content = { @@ -2704,6 +2704,48 @@ class RustPlus extends RustPlusLib { }); } } + + getCommandTravelingVendor(isInfoChannel = false) { + const strings = []; + for (const travelingVendor of this.mapMarkers.travelingVendors) { + if (isInfoChannel) { + return Client.client.intlGet(this.guildId, 'atLocation', { + location: travelingVendor.location.string + }); + } + else { + strings.push(Client.client.intlGet(this.guildId, 'travelingVendorLocatedAt', { + location: travelingVendor.location.string + })); + } + } + + if (strings.length === 0) { + const wasOnMap = this.mapMarkers.timeSinceTravelingVendorWasOnMap; + + if (wasOnMap == null) { + return isInfoChannel ? Client.client.intlGet(this.guildId, 'notActive') : + Client.client.intlGet(this.guildId, 'travelingVendorNotCurrentlyOnMap'); + } + else if (wasOnMap !== null) { + const secondsSince = (new Date() - wasOnMap) / 1000; + if (isInfoChannel) { + const timeSince = Timer.secondsToFullScale(secondsSince, 's'); + return Client.client.intlGet(this.guildId, 'timeSinceLast', { + time: timeSince + }); + } + else { + const timeSince = Timer.secondsToFullScale(secondsSince); + return Client.client.intlGet(this.guildId, 'timeSinceTravelingVendorWasOnMap', { + time: timeSince + }); + } + } + } + + return strings; + } } module.exports = RustPlus; diff --git a/src/templates/notificationSettingsTemplate.json b/src/templates/notificationSettingsTemplate.json index dbade3baf..c8587b33f 100644 --- a/src/templates/notificationSettingsTemplate.json +++ b/src/templates/notificationSettingsTemplate.json @@ -17,6 +17,12 @@ "inGame": false, "voice": true }, + "cargoShipDockingAtHarborSetting": { + "image": "cargoship_logo.png", + "discord": true, + "inGame": false, + "voice": true + }, "patrolHelicopterDetectedSetting": { "image": "patrol_helicopter_logo.png", "discord": true, @@ -53,6 +59,24 @@ "inGame": false, "voice": true }, + "travelingVendorDetectedSetting": { + "image": "traveling_vendor_logo.png", + "discord": true, + "inGame": false, + "voice": true + }, + "travelingVendorHaltedSetting": { + "image": "traveling_vendor_logo.png", + "discord": true, + "inGame": false, + "voice": true + }, + "travelingVendorLeftSetting": { + "image": "traveling_vendor_logo.png", + "discord": true, + "inGame": false, + "voice": true + }, "vendingMachineDetectedSetting": { "image": "vending_machine_logo.png", "discord": true, diff --git a/src/util/FcmListener.js b/src/util/FcmListener.js index 85334a8f6..96e176476 100644 --- a/src/util/FcmListener.js +++ b/src/util/FcmListener.js @@ -20,7 +20,7 @@ const Discord = require('discord.js'); const Path = require('path'); -const PushReceiver = require('push-receiver'); +const PushReceiverClient = require('@liamcottle/push-receiver/src/client'); const Battlemetrics = require('../structures/Battlemetrics'); const Constants = require('../util/constants.js'); @@ -48,8 +48,6 @@ module.exports = async (client, guild) => { return; } - const discordUserId = credentials[hoster].discordUserId; - /* Destroy previous instance of fcm listener */ if (client.fcmListeners[guild.id]) client.fcmListeners[guild.id].destroy(); if (client.fcmListenersLite[guild.id][hoster]) { @@ -62,128 +60,155 @@ module.exports = async (client, guild) => { steamId: hoster })); - let startTime = new Date(); - client.fcmListeners[guild.id] = - await PushReceiver.listen(credentials[hoster].fcm_credentials, async ({ notification, persistentId }) => { - /* Create a delay so that buffered notifications are ignored. */ - if ((new Date() - startTime) < 5000) return; - - /* Parse the notification body. */ - const full = notification - const data = full.data; - const body = JSON.parse(data.body); - - switch (data.channelId) { - case 'pairing': { - switch (body.type) { - case 'server': { - client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, pairing: server`); - pairingServer(client, guild, full, data, body); - } break; - - case 'entity': { - switch (body.entityName) { - case 'Switch': { - client.log('FCM Host', - `GuildID: ${guild.id}, SteamID: ${hoster}, pairing: entity: Switch`); - pairingEntitySwitch(client, guild, full, data, body); - } break; - - case 'Smart Alarm': { - client.log('FCM Host', - `GuildID: ${guild.id}, SteamID: ${hoster}, pairing: entity: Smart Alarm`); - pairingEntitySmartAlarm(client, guild, full, data, body); - } break; - - case 'Storage Monitor': { - client.log('FCM Host', - `GuildID: ${guild.id}, SteamID: ${hoster}, pairing: entity: Storage Monitor`); - pairingEntityStorageMonitor(client, guild, full, data, body); - } break; - - default: { - client.log('FCM Host', - `GuildID: ${guild.id}, SteamID: ${hoster}, ` + - `pairing: entity: other\n${JSON.stringify(full)}`); - } break; - } - } break; - - default: { - client.log('FCM Host', - `GuildID: ${guild.id}, SteamID: ${hoster}, pairing: other\n${JSON.stringify(full)}`); - } break; - } - } break; - - case 'alarm': { - switch (body.type) { - case 'alarm': { - client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, alarm: alarm`); - alarmAlarm(client, guild, full, data, body); - } break; - - default: { - if (data.title === 'You\'re getting raided!') { - /* Custom alarm from plugin: https://umod.org/plugins/raid-alarm */ + const discordUserId = credentials[hoster].discord_user_id; + + const androidId = credentials[hoster].gcm.android_id; + const securityToken = credentials[hoster].gcm.security_token; + client.fcmListeners[guild.id] = new PushReceiverClient(androidId, securityToken, []) + client.fcmListeners[guild.id].on('ON_DATA_RECEIVED', (data) => { + const appData = data.appData; + + if (!appData) { + client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, appData could not be found.`) + return; + } + + const title = appData.find(item => item.key === 'title')?.value; + const message = appData.find(item => item.key === 'message')?.value; + const channelId = appData.find(item => item.key === 'channelId')?.value; + + if (!channelId) { + client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, channelId could not be found.`) + return; + } + + const bodyCheck = appData.find(item => item.key === 'body'); + + if (!bodyCheck) { + client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, body could not be found.`) + return; + } + + const body = JSON.parse(bodyCheck.value); + + if (!body.type && channelId !== 'alarm') { + client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, body type could not be found.`) + return; + } + + switch (channelId) { + case 'pairing': { + switch (body.type) { + case 'server': { + client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, pairing: server`); + pairingServer(client, guild, title, message, body); + } break; + + case 'entity': { + switch (body.entityName) { + case 'Smart Switch': { client.log('FCM Host', - `GuildID: ${guild.id}, SteamID: ${hoster}, alarm: raid-alarm plugin`); - alarmRaidAlarm(client, guild, full, data, body); - break; - } - client.log('FCM Host', - `GuildID: ${guild.id}, SteamID: ${hoster}, alarm: other\n${JSON.stringify(full)}`); - } break; - } - } break; - - case 'player': { - switch (body.type) { - case 'death': { - client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, player: death`); - playerDeath(client, guild, full, data, body, discordUserId); - } break; - - default: { - client.log('FCM Host', - `GuildID: ${guild.id}, SteamID: ${hoster}, player: other\n${JSON.stringify(full)}`); - } break; - } - } break; - - case 'team': { - switch (body.type) { - case 'login': { - client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, team: login`); - teamLogin(client, guild, full, data, body); - } break; - - default: { - client.log('FCM Host', - `GuildID: ${guild.id}, SteamID: ${hoster}, team: other\n${JSON.stringify(full)}`); - } break; - } - } break; - - case 'news': { - switch (body.type) { - case 'news': { - client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, news: news`); - newsNews(client, guild, full, data, body); - } break; - - default: { + `GuildID: ${guild.id}, SteamID: ${hoster}, pairing: entity: Switch`); + pairingEntitySwitch(client, guild, title, message, body); + } break; + + case 'Smart Alarm': { + client.log('FCM Host', + `GuildID: ${guild.id}, SteamID: ${hoster}, pairing: entity: Smart Alarm`); + pairingEntitySmartAlarm(client, guild, title, message, body); + } break; + + case 'Storage Monitor': { + client.log('FCM Host', + `GuildID: ${guild.id}, SteamID: ${hoster}, pairing: entity: Storage Monitor`); + pairingEntityStorageMonitor(client, guild, title, message, body); + } break; + + default: { + client.log('FCM Host', + `GuildID: ${guild.id}, SteamID: ${hoster}, ` + + `pairing: entity: other\n${JSON.stringify(data)}`); + } break; + } + } break; + + default: { + client.log('FCM Host', + `GuildID: ${guild.id}, SteamID: ${hoster}, pairing: other\n${JSON.stringify(data)}`); + } break; + } + } break; + + case 'alarm': { + switch (body.type) { + case 'alarm': { + client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, alarm: alarm`); + alarmAlarm(client, guild, title, message, body); + } break; + + default: { + if (title === 'You\'re getting raided!') { + /* Custom alarm from plugin: https://umod.org/plugins/raid-alarm */ client.log('FCM Host', - `GuildID: ${guild.id}, SteamID: ${hoster}, news: other\n${JSON.stringify(full)}`); - } break; - } - } break; - - default: { - client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, other\n${JSON.stringify(full)}`); - } break; - } - }); + `GuildID: ${guild.id}, SteamID: ${hoster}, alarm: raid-alarm plugin`); + alarmRaidAlarm(client, guild, title, message, body); + break; + } + client.log('FCM Host', + `GuildID: ${guild.id}, SteamID: ${hoster}, alarm: other\n${JSON.stringify(data)}`); + } break; + } + } break; + + case 'player': { + switch (body.type) { + case 'death': { + client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, player: death`); + playerDeath(client, guild, title, message, body, discordUserId); + } break; + + default: { + client.log('FCM Host', + `GuildID: ${guild.id}, SteamID: ${hoster}, player: other\n${JSON.stringify(data)}`); + } break; + } + } break; + + case 'team': { + switch (body.type) { + case 'login': { + client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, team: login`); + teamLogin(client, guild, title, message, body); + } break; + + default: { + client.log('FCM Host', + `GuildID: ${guild.id}, SteamID: ${hoster}, team: other\n${JSON.stringify(data)}`); + } break; + } + } break; + + //case 'news': { + // switch (body.type) { + // case 'news': { + // client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, news: news`); + // newsNews(client, guild, full, data, body); + // } break; + + // default: { + // client.log('FCM Host', + // `GuildID: ${guild.id}, SteamID: ${hoster}, news: other\n${JSON.stringify(full)}`); + // } break; + // } + //} break; + + default: { + client.log('FCM Host', `GuildID: ${guild.id}, SteamID: ${hoster}, other\n${JSON.stringify(data)}`); + } break; + } + }); + + client.fcmListeners[guild.id].connect(); }; function isValidUrl(url) { @@ -191,16 +216,16 @@ function isValidUrl(url) { return false; } -async function pairingServer(client, guild, full, data, body) { +async function pairingServer(client, guild, title, message, body) { const instance = client.getInstance(guild.id); const serverId = `${body.ip}-${body.port}`; const server = instance.serverList[serverId]; - let message = undefined; - if (server) message = await DiscordTools.getMessageById(guild.id, instance.channelId.servers, server.messageId); + let messageObj = undefined; + if (server) messageObj = await DiscordTools.getMessageById(guild.id, instance.channelId.servers, server.messageId); let battlemetricsId = null; - const bmInstance = new Battlemetrics(null, data.title); + const bmInstance = new Battlemetrics(null, title); await bmInstance.setup(); if (bmInstance.lastUpdateSuccessful) { battlemetricsId = bmInstance.id; @@ -210,7 +235,7 @@ async function pairingServer(client, guild, full, data, body) { } instance.serverList[serverId] = { - title: data.title, + title: title, serverIp: body.ip, appPort: body.port, steamId: body.playerId, @@ -224,7 +249,7 @@ async function pairingServer(client, guild, full, data, body) { storageMonitors: server ? server.storageMonitors : {}, markers: server ? server.markers : {}, switchGroups: server ? server.switchGroups : {}, - messageId: (message !== undefined) ? message.id : null, + messageId: (messageObj !== undefined) ? messageObj.id : null, battlemetricsId: battlemetricsId, connect: (!bmInstance.lastUpdateSuccessful) ? null : `connect ${bmInstance.server_ip}:${bmInstance.server_port}`, @@ -248,7 +273,7 @@ async function pairingServer(client, guild, full, data, body) { await DiscordMessages.sendServerMessage(guild.id, serverId, null); } -async function pairingEntitySwitch(client, guild, full, data, body) { +async function pairingEntitySwitch(client, guild, title, message, body) { const instance = client.getInstance(guild.id); const serverId = `${body.ip}-${body.port}`; if (!instance.serverList.hasOwnProperty(serverId)) return; @@ -298,7 +323,7 @@ async function pairingEntitySwitch(client, guild, full, data, body) { } } -async function pairingEntitySmartAlarm(client, guild, full, data, body) { +async function pairingEntitySmartAlarm(client, guild, title, message, body) { const instance = client.getInstance(guild.id); const serverId = `${body.ip}-${body.port}`; if (!instance.serverList.hasOwnProperty(serverId)) return; @@ -346,7 +371,7 @@ async function pairingEntitySmartAlarm(client, guild, full, data, body) { await DiscordMessages.sendSmartAlarmMessage(guild.id, serverId, body.entityId); } -async function pairingEntityStorageMonitor(client, guild, full, data, body) { +async function pairingEntityStorageMonitor(client, guild, title, message, body) { const instance = client.getInstance(guild.id); const serverId = `${body.ip}-${body.port}`; if (!instance.serverList.hasOwnProperty(serverId)) return; @@ -415,7 +440,7 @@ async function pairingEntityStorageMonitor(client, guild, full, data, body) { } } -async function alarmAlarm(client, guild, full, data, body) { +async function alarmAlarm(client, guild, title, message, body) { /* Unfortunately the alarm notification from the fcm listener is unreliable. The notification does not include which entityId that got triggered which makes it impossible to know which Smart Alarms are still being used actively. Also, from testing it seems that notifications don't always reach this fcm listener which makes it even @@ -439,11 +464,11 @@ async function alarmAlarm(client, guild, full, data, body) { server.alarms[entityId].lastTrigger = Math.floor(new Date() / 1000); client.setInstance(guild.id, instance); await DiscordMessages.sendSmartAlarmTriggerMessage(guild.id, serverId, entityId); - client.log(client.intlGet(null, 'infoCap'), `${data.title}: ${data.message}`); + client.log(client.intlGet(null, 'infoCap'), `${title}: ${message}`); } } -async function alarmRaidAlarm(client, guild, full, data, body) { +async function alarmRaidAlarm(client, guild, title, message, body) { const instance = client.getInstance(guild.id); const serverId = `${body.ip}-${body.port}`; const rustplus = client.rustplusInstances[guild.id]; @@ -456,20 +481,20 @@ async function alarmRaidAlarm(client, guild, full, data, body) { } const content = { - embeds: [DiscordEmbeds.getAlarmRaidAlarmEmbed(data, body)], + embeds: [DiscordEmbeds.getAlarmRaidAlarmEmbed({ title: title, message: message }, body)], content: '@everyone', files: files } if (rustplus && (serverId === rustplus.serverId)) { await DiscordMessages.sendMessage(guild.id, content, null, instance.channelId.activity); - rustplus.sendInGameMessage(`${data.title}: ${data.message}`); + rustplus.sendInGameMessage(`${title}: ${message}`); } - client.log(client.intlGet(null, 'infoCap'), `${data.title} ${data.message}`); + client.log(client.intlGet(null, 'infoCap'), `${title} ${message}`); } -async function playerDeath(client, guild, full, data, body, discordUserId) { +async function playerDeath(client, guild, title, message, body, discordUserId) { const user = await DiscordTools.getUserById(guild.id, discordUserId); let png = null; @@ -477,7 +502,7 @@ async function playerDeath(client, guild, full, data, body, discordUserId) { if (png === null) png = isValidUrl(body.img) ? body.img : Constants.DEFAULT_SERVER_IMG; const content = { - embeds: [DiscordEmbeds.getPlayerDeathEmbed(data, body, png)] + embeds: [DiscordEmbeds.getPlayerDeathEmbed({ title: title }, body, png)] } if (user) { @@ -485,7 +510,7 @@ async function playerDeath(client, guild, full, data, body, discordUserId) { } } -async function teamLogin(client, guild, full, data, body) { +async function teamLogin(client, guild, title, message, body) { const instance = client.getInstance(guild.id); const content = { @@ -506,13 +531,13 @@ async function teamLogin(client, guild, full, data, body) { } } -async function newsNews(client, guild, full, data, body) { - const instance = client.getInstance(guild.id); - - const content = { - embeds: [DiscordEmbeds.getNewsEmbed(guild.id, data)], - components: [DiscordButtons.getNewsButton(guild.id, body, isValidUrl(body.url))] - } - - await DiscordMessages.sendMessage(guild.id, content, null, instance.channelId.activity); -} \ No newline at end of file +//async function newsNews(client, guild, full, data, body) { +// const instance = client.getInstance(guild.id); +// +// const content = { +// embeds: [DiscordEmbeds.getNewsEmbed(guild.id, data)], +// components: [DiscordButtons.getNewsButton(guild.id, body, isValidUrl(body.url))] +// } +// +// await DiscordMessages.sendMessage(guild.id, content, null, instance.channelId.activity); +//} diff --git a/src/util/FcmListenerLite.js b/src/util/FcmListenerLite.js index 3b2f12b3f..676e7568d 100644 --- a/src/util/FcmListenerLite.js +++ b/src/util/FcmListenerLite.js @@ -18,7 +18,7 @@ */ -const PushReceiver = require('push-receiver'); +const PushReceiverClient = require('@liamcottle/push-receiver/src/client'); const Constants = require('../util/constants.js'); const DiscordEmbeds = require('../discordTools/discordEmbeds.js'); @@ -47,83 +47,111 @@ module.exports = async (client, guild, steamId) => { return; } - if (client.fcmListenersLite[guild.id][steamId]) client.fcmListenersLite[guild.id][steamId].destroy(); - - const discordUserId = credentials[steamId].discordUserId; + if (client.fcmListenersLite[guild.id][steamId]) { + client.fcmListenersLite[guild.id][steamId].destroy(); + delete client.fcmListenersLite[guild.id][steamId]; + } client.log(client.intlGet(null, 'infoCap'), client.intlGet(null, 'fcmListenerStartLite', { guildId: guild.id, steamId: steamId })); - let startTime = new Date(); - client.fcmListenersLite[guild.id][steamId] = - await PushReceiver.listen(credentials[steamId].fcm_credentials, async ({ notification, persistentId }) => { - /* Create a delay so that buffered notifications are ignored. */ - if ((new Date() - startTime) < 10000) return; - - /* Parse the notification body. */ - const full = notification - const data = full.data; - const body = JSON.parse(data.body); - - switch (data.channelId) { - case 'pairing': { - switch (body.type) { - case 'server': { - client.log('FCM LITE', `GuildID: ${guild.id}, SteamID: ${steamId}, pairing: server`); - pairingServer(client, guild, steamId, full, data, body); - } break; - - case 'entity': { - switch (body.entityName) { - case 'Switch': { - client.log('FCM LITE', - `GuildID: ${guild.id}, SteamID: ${steamId}, pairing: entity: Switch`); - pairingEntitySwitch(client, guild, full, data, body); - } break; - - case 'Smart Alarm': { - client.log('FCM LITE', - `GuildID: ${guild.id}, SteamID: ${steamId}, pairing: entity: Smart Alarm`); - pairingEntitySmartAlarm(client, guild, full, data, body); - } break; - - case 'Storage Monitor': { - client.log('FCM LITE', - `GuildID: ${guild.id}, SteamID: ${steamId}, pairing: entity: Storage Monitor`); - pairingEntityStorageMonitor(client, guild, full, data, body); - } break; - - default: { - client.log('FCM LITE', - `GuildID: ${guild.id}, SteamID: ${steamId}, ` + - `pairing: entity: other\n${JSON.stringify(full)}`); - } break; - } - } break; - - default: { - } break; - } - } break; - - case 'player': { - switch (body.type) { - case 'death': { - client.log('FCM LITE', `GuildID: ${guild.id}, SteamID: ${steamId}, player: death`); - playerDeath(client, guild, full, data, body, discordUserId); - } break; - - default: { - } break; - } - } break; - - default: { - } break; - } - }); + const discordUserId = credentials[steamId].discord_user_id; + + const androidId = credentials[steamId].gcm.android_id; + const securityToken = credentials[steamId].gcm.security_token; + client.fcmListenersLite[guild.id][steamId] = new PushReceiverClient(androidId, securityToken, []) + client.fcmListenersLite[guild.id][steamId].on('ON_DATA_RECEIVED', (data) => { + const appData = data.appData; + + if (!appData) { + client.log('FCM LITE', `GuildID: ${guild.id}, SteamID: ${hoster}, appData could not be found.`) + return; + } + + const title = appData.find(item => item.key === 'title')?.value; + const message = appData.find(item => item.key === 'message')?.value; + const channelId = appData.find(item => item.key === 'channelId')?.value; + + if (!channelId) { + client.log('FCM LITE', `GuildID: ${guild.id}, SteamID: ${hoster}, channelId could not be found.`) + return; + } + + const bodyCheck = appData.find(item => item.key === 'body'); + + if (!bodyCheck) { + client.log('FCM LITE', `GuildID: ${guild.id}, SteamID: ${hoster}, body could not be found.`) + return; + } + + const body = JSON.parse(bodyCheck.value); + + if (!body.type && channelId !== 'alarm') { + client.log('FCM LITE', `GuildID: ${guild.id}, SteamID: ${hoster}, body type could not be found.`) + return; + } + + switch (channelId) { + case 'pairing': { + switch (body.type) { + case 'server': { + client.log('FCM LITE', `GuildID: ${guild.id}, SteamID: ${steamId}, pairing: server`); + pairingServer(client, guild, steamId, title, message, body); + } break; + + case 'entity': { + switch (body.entityName) { + case 'Smart Switch': { + client.log('FCM LITE', + `GuildID: ${guild.id}, SteamID: ${steamId}, pairing: entity: Switch`); + pairingEntitySwitch(client, guild, title, message, body); + } break; + + case 'Smart Alarm': { + client.log('FCM LITE', + `GuildID: ${guild.id}, SteamID: ${steamId}, pairing: entity: Smart Alarm`); + pairingEntitySmartAlarm(client, guild, title, message, body); + } break; + + case 'Storage Monitor': { + client.log('FCM LITE', + `GuildID: ${guild.id}, SteamID: ${steamId}, pairing: entity: Storage Monitor`); + pairingEntityStorageMonitor(client, guild, title, message, body); + } break; + + default: { + client.log('FCM LITE', + `GuildID: ${guild.id}, SteamID: ${steamId}, ` + + `pairing: entity: other\n${JSON.stringify(data)}`); + } break; + } + } break; + + default: { + } break; + } + } break; + + case 'player': { + switch (body.type) { + case 'death': { + client.log('FCM LITE', `GuildID: ${guild.id}, SteamID: ${steamId}, player: death`); + playerDeath(client, guild, title, message, body, discordUserId); + } break; + + default: { + } break; + } + } break; + + default: { + } break; + } + }); + + client.fcmListenersLite[guild.id][steamId].connect(); }; function isValidUrl(url) { @@ -131,7 +159,7 @@ function isValidUrl(url) { return false; } -async function pairingServer(client, guild, steamId, full, data, body) { +async function pairingServer(client, guild, steamId, title, message, body) { const instance = client.getInstance(guild.id); const serverId = `${body.ip}-${body.port}`; @@ -151,7 +179,7 @@ async function pairingServer(client, guild, steamId, full, data, body) { } } -async function pairingEntitySwitch(client, guild, full, data, body) { +async function pairingEntitySwitch(client, guild, title, message, body) { const instance = client.getInstance(guild.id); const serverId = `${body.ip}-${body.port}`; if (!instance.serverList.hasOwnProperty(serverId)) return; @@ -201,7 +229,7 @@ async function pairingEntitySwitch(client, guild, full, data, body) { } } -async function pairingEntitySmartAlarm(client, guild, full, data, body) { +async function pairingEntitySmartAlarm(client, guild, title, message, body) { const instance = client.getInstance(guild.id); const serverId = `${body.ip}-${body.port}`; if (!instance.serverList.hasOwnProperty(serverId)) return; @@ -249,7 +277,7 @@ async function pairingEntitySmartAlarm(client, guild, full, data, body) { await DiscordMessages.sendSmartAlarmMessage(guild.id, serverId, body.entityId); } -async function pairingEntityStorageMonitor(client, guild, full, data, body) { +async function pairingEntityStorageMonitor(client, guild, title, message, body) { const instance = client.getInstance(guild.id); const serverId = `${body.ip}-${body.port}`; if (!instance.serverList.hasOwnProperty(serverId)) return; @@ -318,7 +346,7 @@ async function pairingEntityStorageMonitor(client, guild, full, data, body) { } } -async function playerDeath(client, guild, full, data, body, discordUserId) { +async function playerDeath(client, guild, title, message, body, discordUserId) { const user = await DiscordTools.getUserById(guild.id, discordUserId); if (!user) return; @@ -327,7 +355,7 @@ async function playerDeath(client, guild, full, data, body, discordUserId) { if (png === null) png = isValidUrl(body.img) ? body.img : Constants.DEFAULT_SERVER_IMG; const content = { - embeds: [DiscordEmbeds.getPlayerDeathEmbed(data, body, png)] + embeds: [DiscordEmbeds.getPlayerDeathEmbed({ title: title }, body, png)] } await client.messageSend(user, content); diff --git a/src/util/constants.js b/src/util/constants.js index 1186b7a92..61e3b9158 100644 --- a/src/util/constants.js +++ b/src/util/constants.js @@ -61,6 +61,7 @@ module.exports = { PATROL_HELI_DOWNED_RADIUS: 400, OIL_RIG_CHINOOK_47_MAX_SPAWN_DISTANCE: 550, PROXIMITY_SETTING_DEFAULT_METERS: 500, + HARBOR_DOCK_DISTANCE: 100, /* Emojis */ ONLINE_EMOJI: ':green_circle:', @@ -79,6 +80,7 @@ module.exports = { COLOR_ACTIVE: '#00FF40', COLOR_CARGO_SHIP_ENTERS_EGRESS_STAGE: '#4B0082', COLOR_CARGO_SHIP_ENTERS_MAP: '#9932CC', + COLOR_CARGO_SHIP_DOCKED: '#4444C7', COLOR_CARGO_SHIP_LEFT_MAP: '#8B008B', COLOR_CARGO_SHIP_LOCATED: '#191970', COLOR_CARGO_TRACER: '#FF0000', @@ -99,6 +101,10 @@ module.exports = { COLOR_PATROL_HELICOPTER_TRACER: '#00FF00', COLOR_SETTINGS: '#861C0C', COLOR_TEAMCHAT_DEFAULT: '#CE412B', + COLOR_TRAVELING_VENDOR_HALTED: '#98C4D8', + COLOR_TRAVELING_VENDOR_LOCATED_AT: '#F4A3E2', + COLOR_TRAVELING_VENDOR_LEFT_MAP: '#5A3E9A', + COLOR_TRAVELING_VENDOR_MOVING: '#7FCE41', GET_STEAM_PROFILE_LINK: function (steamId) { return `[${steamId}](${this.STEAM_PROFILES_URL}${steamId})`; diff --git a/src/util/instanceUtils.js b/src/util/instanceUtils.js index 777c105d5..c2b264f93 100644 --- a/src/util/instanceUtils.js +++ b/src/util/instanceUtils.js @@ -43,13 +43,37 @@ module.exports = { }, readInstanceFile: function (guildId) { - const path = Path.join(__dirname, '..', '..', 'instances', `${guildId}.json`); - return JSON.parse(Fs.readFileSync(path, 'utf8')); + const targetPath = Path.join(__dirname, '..', '..', 'instances', `${guildId}.json`); + const tempPath = targetPath + '.tmp'; + if (Fs.existsSync(tempPath)) { + try { + Fs.unlinkSync(tempPath); + } catch (e) { + console.warn(`Failed to remove stale temporary file: ${tempPath}`, e); + } + } + + // Fahren Sie mit dem normalen Lesen fort + return JSON.parse(Fs.readFileSync(targetPath, 'utf8')); }, writeInstanceFile: function (guildId, instance) { - const path = Path.join(__dirname, '..', '..', 'instances', `${guildId}.json`); - Fs.writeFileSync(path, JSON.stringify(instance, null, 2)); + const targetPath = Path.join(__dirname, '..', '..', 'instances', `${guildId}.json`); + const tempPath = targetPath + '.tmp'; + + const data = JSON.stringify(instance, null, 4); + + Fs.writeFileSync(tempPath, data, 'utf8'); + try { + const fd = Fs.openSync(tempPath, 'r+'); + Fs.fsyncSync(fd); + Fs.closeSync(fd); + } catch (error) { + console.error(`Failed to sync file data: ${tempPath}:`, error); + Fs.unlinkSync(tempPath); + throw error; + } + Fs.renameSync(tempPath, targetPath); }, readCredentialsFile: function (guildId) { @@ -59,6 +83,6 @@ module.exports = { writeCredentialsFile: function (guildId, credentials) { const path = Path.join(__dirname, '..', '..', 'credentials', `${guildId}.json`); - Fs.writeFileSync(path, JSON.stringify(credentials, null, 2)); + Fs.writeFileSync(path, JSON.stringify(credentials, null, 4)); }, }